0.0.5 • Published 11 years ago

confg v0.0.5

Weekly downloads
102
License
MIT
Repository
-
Last release
11 years ago

Confg

Configurable enviroment with a js file.

npm install confg

Use

By default confg uses config.js in the root directory. This is eg. of config file.

config.js
var pkg = require('package.json');

module.exports = function( confg ){

	confg.configuration({
		APPSECRET: '2323O3IM4OIGM3OIM',
		VERSION: pkg.version,
		APPSTARTUP: ( +new Date() ) + ''
	});
};
start

to use it in you app

var confg = require( 'confg' );

confg.init( );

Config

var confg = require( 'confg' );

confg.use( __dirname + '/development.js' );
confg.init( );