JSPM

node-di

0.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q26654F

NodeDI is a simple Dependency Injection framework loosley based on the AngularJS DI framework

Package Exports

  • node-di

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-di) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

##node-di

Please Share on Twitter if you like #NodeDI

###Description NodeDI is a simple Dependency Injection framework for NodeJS. It has been built with testing in mind and as as such allows you to return mocks for any type of element that can be injected.

###Installation

npm install node-di --save

###Modules Modules are named groups of injected items.

var server  = DI.module('serverModule', ['dependency1', 'dependency2']);

###Values Values are the simplest items that can be injected and can be injected and are normally 3rd party modules, primitives or items that do not need to be new'ed up. Values can also have dependencies as described below.

DI.module('serverModule', [])
     .value('config', { port:3001, host:'localhost' });

###Services Services are items that do need to be new'ed up but that should be shared between all instances that need the service within a module.

var Passport = require('passport').Passport;
DI.module('serverModule', [])
    .service('passport', Passport);

###Factories Factories return a new instance every time one is needed from the dependency injector they are useful when you dynamically need to create items.

function Model(){
    var name;
    var age;
};

DI.module('serverModule', [])
    .factory('model', Model);

###Dependencies. You set an objects dependencies by defining an $inject = []; on the object for example

//------- JobScheduler.js -----//
//Dependencies in the constructor.
function Job(scheduler, config) {
    var interval = config.get('job').interval;
    
    this.run = function(job){
        scheduler.scheduleJob(interval, job);
    }
}
//Set dependencies here.
Job.$inject = ['scheduler', 'config'];
return Job;

//------ Module.js -----//

//Simple config module for example 
var config = {interval:new Date(Date.now() + 10000)};
//Use 3rd party library as dependency
var scheduler = require('node-scheduler');

DI.module('jobModule', [])
    .value('jobScheduler', require('./JobScheduler')
    .value('scheduler', scheduler)
    .value('config', config);

###Usage Check the test suite for full usage. ####TODO Usage examples

##Change Log

###0.0.2 Updated Boyant logger to be able to change it's level on the CLI

###0.0.1 Initial Commit

Please Share on Twitter if you like #NodeDI