0.2.0 • Published 12 years ago

liveconf v0.2.0

Weekly downloads
10
License
-
Repository
github
Last release
12 years ago

Stack Overflow RSS

Install

npm install liveconf

Use

Have a configuration file with some configuration. e.g. config.json

{
   "a":8,
   "b":"foo"
}
var liveconf = require('liveconf');

// get the configuration from a file
var config = liveconf('config.json');

console.log(config.b); // foo 

The configuration object will be cached and will always be the same for the same configuration file. The configuration file is watched so any changes are reflected on the object.

While the code is running you can change the configuration.

{
   "b":"bar",
   "c":42
}
console.log(config.b); // bar
0.2.0

12 years ago

0.1.0

12 years ago