This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

swrap

0.0.5 • Public • Published

swrap Build Status Coverage Status Dependency Status NPM version

Simple Node service wrapper, with basic support for configs and classes. Example:

var swrap = require( "swrap" );
var appwrapper = swrap.app(); // or new wrap.app();
 
// ...initialize your services, for example express, mongoose, restify, etc:
appwrapper.set( "http", expressApp );
appwrapper.set( "db", mongoose );
 
// later you can get them:
mongoose = appwrapper.get( "db" );
 
// We parse configuration JSONs with CJSON, so if you want, comment'em!
appwrapper.config.load( "config/commented.json" );
appwrapper.config.get( "my.nested.config.is.awesome" ); // => the value of your config!

Installation

npm install swrap

Tests

Execute the following commands to get the tests running in swrap:

npm install -d
npm test

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i swrap

Weekly Downloads

2

Version

0.0.5

License

MIT

Last publish

Collaborators

  • gustavohenke