jsonconf
v0.0.2
Published
Reloadable configuration from json files
Downloads
3
Readme
jsonconf
Reloadable configuration from json files
Installation
$ npm install jsonconf
Example
var config = require('jsonconf');
var events = require('events');
var emitter = new events.EventEmitter();
config.load(
[__dirname + 'config.json',
__dirname + 'special-config.json'
], emitter);
emitter.on('configLoaded', function (){
console.log(config.get('attribute'));
});
emitter.on('error', function (err){
console.log(err);
});
License
MIT