TupperwareJS 用Javascript编写的控制系统反转
特百惠JS TupperwareJS是NodeJS的依赖注入系统,可以在函数式或面向对象的上下文中使用。入门在终端中使用以下命令通过npm安装: npm install --save tupperware对象使用var tupperware = require ( 'tupperware' ) var container = tupperware . create ( )设置(名称[,选项],值)向容器的注册表添加新值。 container . set ( 'foo' , function ( ) { return 'foo' } ) container . set ( 'bar' , function ( foo ) { // The `foo` function will be called and injected into // the
用户评论