Change require fs (#313)
what is there now is bad, everyone will think they need the fs library, when they only need it for the last example.
This commit is contained in:
parent
e6f27f5d2c
commit
20e00efd6c
1 changed files with 2 additions and 3 deletions
|
@ -8,8 +8,7 @@ Hierarchical node.js configuration with files, environment variables, command-li
|
||||||
Using nconf is easy; it is designed to be a simple key-value store with support for both local and remote storage. Keys are namespaced and delimited by `:`. Let's dive right into sample usage:
|
Using nconf is easy; it is designed to be a simple key-value store with support for both local and remote storage. Keys are namespaced and delimited by `:`. Let's dive right into sample usage:
|
||||||
|
|
||||||
``` js
|
``` js
|
||||||
var fs = require('fs'),
|
var nconf = require('nconf');
|
||||||
nconf = require('nconf');
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Setup nconf to use (in-order):
|
// Setup nconf to use (in-order):
|
||||||
|
@ -39,7 +38,7 @@ Using nconf is easy; it is designed to be a simple key-value store with support
|
||||||
// Save the configuration object to disk
|
// Save the configuration object to disk
|
||||||
//
|
//
|
||||||
nconf.save(function (err) {
|
nconf.save(function (err) {
|
||||||
fs.readFile('path/to/your/config.json', function (err, data) {
|
require('fs').readFile('path/to/your/config.json', function (err, data) {
|
||||||
console.dir(JSON.parse(data.toString()))
|
console.dir(JSON.parse(data.toString()))
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue