Skip to content

helios1138/node-dm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node DM

####Asynchronous Dependency Manager for Node.JS

A simple library to handle dependencies in your app.

  • resources can be provided in any order and time (hence the asynchronousity)
  • instances are created only when they are needed (being depended upon), so you can require() all the things you have (e.g. in some module) and stuff you won't be using will simply remain dormant
  • internally relies on promises (polyfill is used for node.js < 0.12.x, otherwise native ES6)
  • will notify you of missing dependencies
  • will check for circular dependencies

to start:

npm install node-dm
var dm = require('node-dm');

optional config:

/*
 * will reject dependencies that were not resolved after a period of time
 * (2.5s is the default value, set to `false` to disable)
 */
dm.config({ dependencyTimeout: 2500 });

Short demo

app.js

function App(db, config){
	/* get your dependencies */
	this.db = db;
	this.config = config;
}

/* define what dependencies your resource needs */
App.$depends = ['db', 'config'];

/* provide your resource as a class */
dm.class('app', App);

/* 
 * you can also specify dependencies here directly without $depends: 
 * dm.class('app', App, ['db', 'config']); 
 */

/* 
 * full provide method looks like this ($depends cannot be used here):
 * dm.provide('app', 'class', App, ['db', 'config']); 
 */

/* 
 * bootstrap dependency tree - calling dm.run() is needed to instatiate
 * the root dependency, which nobody depends upon 
 */
dm.run('app')
  .catch(function(err){
    /* 
     * because internally node dm uses promises, all the rejections/exceptions
     * eventually can be caught on the topmost node of dependency tree
     */
    console.error(err.stack);
  });

db.js

function connectToDb(config){
    /* 
     * we return a promise, so whoever depends on 'db', will receive it
     * once the connection has beed established
     */
    return new Promise(function(resolve, reject){
        MongoClient.connect(config.mongo, function(err, db){
            if(err){
                reject(err);
            }
            else{
                resolve(db);
            }
        });
    });
}

connectToDb.$depends = ['config'];

/* 
 * provide your resource as a factory function, that returns what you need
 * (or the promise of that)
 */
dm.factory('db', connectToDb);

config.js

var dm = require('node-dm');

var config = {
	mongo: 'mongodb://localhost:27017/mydb'
};

/* 
 * this resource is a simple value and does not need instantiation; 
 * can also be a promise 
 */
dm.value('config', config);

Api

define your resources:

  • as simple values of any kind
var config = {
	this: {
	    is: 'config'
	}
}

/* full method */
dm.provide('config', 'value', config);
/* shorthand method: */
dm.value('pi', 3.14);

/* promises will also work */
var timeIn2Sec = new Promise(function(resolve){
	setTimeout(function(){
		resolve(new Date());
	}, 2000);
});

/* 
 * whoever depends on this, will receive it 
 * once the promise will be resolved 
 */
dm.value('timeIn2Sec', timeIn2Sec);
  • as classes
function UserCtrl(config, db){
	/* you will receive dependencies you requested */
	this.config = config;
	this.db = db;
}

UserCtrl.$depends = ['config', 'db'];

/* full method */
dm.provide('userCtrl', 'class', UserCtrl, UserCtrl.$depends);

/* wokrs with ES6 too */
class FileParser{
	static get $depends(){ return ['config', 'db']; }

	constructor(config, db){
		this.config = config;
		this.db = db;
	}
}

/* shorthand method */
dm.class('fileParser', FileParser);
  • as factory functions
function createObject(){
	return {
		this: { is: 'object' }
	}
}

/* full method */
dm.provide('someObject', 'factory', createObject);

/* a function can also return a promise */
function connectToDb(config){
	return new Promise(function(resolve, reject){
		MongoClient.connect(config.mongo, function(err, db){
			if(err){
				reject(err);
			}
			else{
				resolve(db);
			}
		});
	});
}

connectToDb.$depends = ['config'];

/* shorthand method: */
dm.factory('db', connectToDb);

alternatively, dependencies of a resource can be requested as an object:

function Parser(deps){
	/* you will receive your dependencies as a map */
	this.deps = deps;
	this.is = 'awesome parser';
}

Parser.prototype.parse = function(){
	if(this.deps.config.canIDoStuff){
		this.deps.db.doSomething();
		this.deps.router.makeEverythingGood();
	}
};

Parser.$depends = { 
	config: true,
	db: true,
	router: true
};

/*
 * or you can use shorthand like this: 
 * Parser.$depends = dm.object('config', 'db', 'router');
 */

dm.class('parser', Parser);

you can also just request dependencies anywhere in the code like this:

dm.resolve(['db', 'config', 'pi'])
	.then(function(result){
		/* result is an array of dependencies */
		var db = result[0],
			config = result[1],
			pi = result[2];
	});

or like this:

dm.resolve({db: true, config: true, pi: true})
	.then(function(result){
		/* result is a map of dependencies */
		var db = result.db,
			config = result.config,
			pi = result.pi;
	});

About

Asynchronous Dependency Injection Manager for Node.JS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published