Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.
nconf is a hierarchical node.js configuration with support for multiple sources. It allows you to manage configuration settings for your application from various sources such as command-line arguments, environment variables, files, and even custom sources.
Loading Configuration from Command-Line Arguments
This feature allows you to load configuration settings from command-line arguments. The `argv` method parses the command-line arguments and makes them available through the `nconf` object.
const nconf = require('nconf');
nconf.argv();
console.log(nconf.get('someArg'));
Loading Configuration from Environment Variables
This feature allows you to load configuration settings from environment variables. The `env` method reads the environment variables and makes them accessible through the `nconf` object.
const nconf = require('nconf');
nconf.env();
console.log(nconf.get('NODE_ENV'));
Loading Configuration from a File
This feature allows you to load configuration settings from a file. The `file` method reads the specified file and makes its contents available through the `nconf` object.
const nconf = require('nconf');
nconf.file({ file: 'config.json' });
console.log(nconf.get('database:host'));
Setting Default Values
This feature allows you to set default configuration values. The `defaults` method sets the default values that will be used if no other source provides a value for a given key.
const nconf = require('nconf');
nconf.defaults({ 'port': 3000 });
console.log(nconf.get('port'));
Overriding Configuration Values
This feature allows you to override configuration values. The `overrides` method sets values that will take precedence over any other source.
const nconf = require('nconf');
nconf.overrides({ 'port': 8080 });
console.log(nconf.get('port'));
The `config` package provides a way to manage configuration files for your Node.js application. It supports different configurations for different deployment environments and allows for hierarchical configurations. Compared to nconf, `config` is more focused on file-based configurations and environment-specific settings.
The `dotenv` package loads environment variables from a `.env` file into `process.env`. It is simpler and more lightweight compared to nconf, focusing solely on environment variables and not supporting other sources like command-line arguments or JSON files.
The `convict` package provides a way to define a schema for your configuration and validate it. It supports multiple sources like environment variables and JSON files, similar to nconf. However, `convict` adds the ability to define a schema and validate the configuration against it, which nconf does not provide.
Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.
curl http://npmjs.org/install.sh | sh
[sudo] npm install nconf
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 :
. Lets dive right into sample usage:
var fs = require('fs'),
nconf = require('nconf');
//
// Setup nconf to use the 'file' store and set a couple of values;
//
nconf.add('file', { file: 'path/to/your/config.json' });
nconf.set('database:host', '127.0.0.1');
nconf.set('database:port', 5984);
//
// Get the entire database object from nconf. This will output
// { host: '127.0.0.1', port: 5984 }
//
console.dir(nconf.get('database'));
//
// Save the configuration object to disk
//
nconf.save(function (err) {
fs.readFile('path/to/your/config.json', function (err, data) {
console.dir(JSON.parse(data.toString()))
});
});
Configuration management can get complicated very quickly for even trivial applications running in production. nconf
addresses this problem by enabling you to setup a hierarchy for different sources of configuration with some sane defaults (in-order):
The top-level of nconf
is an instance of the nconf.Provider
abstracts this all for you into a simple API.
Adds a new store with the specified name
and options
. If options.type
is not set, then name
will be used instead:
nconf.add('global', { type: 'file', file: '/path/to/globalconf.json' });
nconf.add('userconf', { type: 'file', file: '/path/to/userconf.json' });
Similar to nconf.add
, except that it can replace an existing store if new options are provided
//
// Load a file store onto nconf with the specified settings
//
nconf.use('file', { file: '/path/to/some/config-file.json' });
//
// Replace the file store with new settings
//
nconf.use('file', { file: 'path/to/a-new/config-file.json' });
Removes the store with the specified name.
The configuration stored at that level will no longer be used for lookup(s).
nconf.remove('file');
nconf
will traverse the set of stores that you have setup in-order to ensure that the value in the store of the highest priority is used. For example to setup following sample configuration:
var nconf = require('nconf');
//
// Read in command-line arugments and environment variables
//
nconf.argv = nconf.env = true;
//
// Setup the `user` store followed by the `global` store. Note that
// order is significant in these operations.
//
nconf.add('user', { file: 'path/to/user-config.json' });
nconf.add('global', { file: 'path/to/global-config.json' })
A simple in-memory storage engine that stores a nested JSON representation of the configuration. To use this engine, just call .use()
with the appropriate arguments. All calls to .get()
, .set()
, .clear()
, .reset()
methods are synchronous since we are only dealing with an in-memory object.
nconf.use('memory');
Based on the Memory store, but exposes hooks into manual overrides, command-line arguments, and environment variables (in that order of priority). Every instance of nconf.Provider
, including the top-level nconf
object itself already has a System
store at the top-level, so configuring it only requires setting properties
//
// `nconf.get(awesome)` will always return true regardless of
// command-line arguments or environment variables.
//
nconf.overrides = { awesome: true };
//
// Can also be an object literal to pass to `optimist`.
//
nconf.argv = true;
//
// Can also be an array of variable names to restrict loading to.
//
nconf.env = true;
Based on the Memory store, but provides additional methods .save()
and .load()
which allow you to read your configuration to and from file. As with the Memory store, all method calls are synchronous with the exception of .save()
and .load()
which take callback functions. It is important to note that setting keys in the File engine will not be persisted to disk until a call to .save()
is made.
nconf.use('file', { file: 'path/to/your/config.json' });
The file store is also extensible for multiple file formats, defaulting to JSON
. To use a custom format, simply pass a format object to the .use()
method. This object must have .parse()
and .stringify()
methods just like the native JSON
object.
There is a separate Redis-based store available through nconf-redis. To install and use this store simply:
$ npm install nconf
$ npm install nconf-redis
Once installing both nconf
and nconf-redis
, you must require both modules to use the Redis store:
var nconf = require('nconf');
//
// Requiring `nconf-redis` will extend the `nconf`
// module.
//
require('nconf-redis');
nconf.use('redis', { host: 'localhost', port: 6379, ttl: 60 * 60 * 1000 });
There is more documentation available through docco. I haven't gotten around to making a gh-pages branch so in the meantime if you clone the repository you can view the docs:
open docs/nconf.html
Tests are written in vows and give complete coverage of all APIs and storage engines.
$ npm test
FAQs
Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.
The npm package nconf receives a total of 480,088 weekly downloads. As such, nconf popularity was classified as popular.
We found that nconf demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.