特百惠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... });
暂无评论