confg
v0.0.5
Published
confg helps config enviroment variables with javascript
Downloads
213
Maintainers
Readme
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( );