jsonconf

0.0.2 • Public • Published

jsonconf

NPM version Build status Test coverage Dependency Status License

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

Readme

Keywords

Package Sidebar

Install

npm i jsonconf

Weekly Downloads

2

Version

0.0.2

License

MIT

Last publish

Collaborators

  • artesonraju