Simple Dependency Injection for NodeJS
SDI is a simple dependency injection engine, inspired from Angular.
An example :
toto.js
exports { $logger;}
To use it :
main.js
var sdi = ; sdi; sdi;
Output:
$ node main.js
toto abc myParam
Context
For dependency injection, you need a context. A context is simple a map of objects, keys have to start with $.
var myContext = $a: ;
If you specify no context, the default one is used.
You can add element to the default context with sdi.addToDefaultContext(myContext)
;
Use dependency injection on a full module :
var m = sdi; // use default contextvar m = sdi; // use myContext as contextvar m = sdi; // use 2 contextsvar m = sdi; // use myContext and the default context m;
In a module loaded through dependency injection, you can inject $self
to call methods on the same module using dependency injection.
exports ...; exports ... $self;;
Use dependency injection on single function :
{ ...} var ff = sdi; // you can also provide a context, see above. ;
Use dependency injection on object :
{} MyObjprototype {}; var o = sdi; // you can also provide a context, see above.o;
You can inject $this
in object, to access to call methods with dependency injection.
Using $this
avoid to use .bind(this)
on all sub functions.
MyObjprototype { $this;};
Performances
Dependency resolution is only performed on the first function call. All subsequents calls are very fast (just few object moves).
Use dependency injection only for long running object. Avoid to use it on short live object (eg on object created in an http request).
Example : inject all the modules of a tools directory
main.js
var sdi = ; sdi;sdi;sdi; sdi;
License
Copyright 2014 Bertrand Paquet
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.