swrap

Simple Node service wrapper, with basic support for configs and classes.
Example:
var swrap = require( "swrap" );
var appwrapper = swrap.app();
appwrapper.set( "http", expressApp );
appwrapper.set( "db", mongoose );
mongoose = appwrapper.get( "db" );
appwrapper.config.load( "config/commented.json" );
appwrapper.config.get( "my.nested.config.is.awesome" );
Installation
npm install swrap
Tests
Execute the following commands to get the tests running in swrap:
npm install -d
npm test
License
MIT