neocore
v0.0.6
Published
Core js utils, like DI helpers, react-mixins, ...
Downloads
17
Readme
neocore
New core js utils, like DI helpers, react-mixins, ...
Install
npm install --save neocore
Usage
var Context = require("neocore/context/context").Context;
var
context = new Context(),
a_service = {
say_hello: function(){console.log("hello");}
};
context.service.registerInstance("a service", a_service);
Run tests
grunt test
Release new Version
Set version in package.json and bower.json, then run...
npm publish