• Stars
    star
    3,866
  • Rank 11,280 (Top 0.3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 13 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.

nconf

Version npmnpm DownloadsBuild StatusCoverageDependencies

Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.

Example

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:

  // sample.js
  var nconf = require('nconf');

  //
  // Setup nconf to use (in-order):
  //   1. Command-line arguments
  //   2. Environment variables
  //   3. A file located at 'path/to/config.json'
  //
  nconf.argv()
   .env()
   .file({ file: 'path/to/config.json' });

  //
  // Set a few variables on `nconf`.
  //
  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.log('foo: ' + nconf.get('foo'));
  console.log('NODE_ENV: ' + nconf.get('NODE_ENV'));
  console.log('database: ' + nconf.get('database'));

  //
  // Save the configuration object to disk
  //
  nconf.save(function (err) {
    require('fs').readFile('path/to/your/config.json', function (err, data) {
      console.dir(JSON.parse(data.toString()))
    });
  });

If you run the below script:

  $ NODE_ENV=production node sample.js --foo bar

The output will be:

  foo: bar
  NODE_ENV: production
  database: { host: '127.0.0.1', port: 5984 }

Hierarchical configuration

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 no defaults. The order in which you attach these configuration sources determines their priority in the hierarchy. Let's take a look at the options available to you

  1. nconf.argv(options) Loads process.argv using yargs. If options is supplied it is passed along to yargs.
  2. nconf.env(options) Loads process.env into the hierarchy.
  3. nconf.file(options) Loads the configuration data at options.file into the hierarchy.
  4. nconf.defaults(options) Loads the data in options.store into the hierarchy.
  5. nconf.overrides(options) Loads the data in options.store into the hierarchy.

A sane default for this could be:

  var nconf = require('nconf');

  //
  // 1. any overrides
  //
  nconf.overrides({
    'always': 'be this value'
  });

  //
  // 2. `process.env`
  // 3. `process.argv`
  //
  nconf.env().argv();

  //
  // 4. Values in `config.json`
  //
  nconf.file('/path/to/config.json');

  //
  // Or with a custom name
  // Note: A custom key must be supplied for hierarchy to work if multiple files are used.
  //
  nconf.file('custom', '/path/to/config.json');

  //
  // Or searching from a base directory.
  // Note: `name` is optional.
  //
  nconf.file(name, {
    file: 'config.json',
    dir: 'search/from/here',
    search: true
  });

  //
  // 5. Any default values
  //
  nconf.defaults({
    'if nothing else': 'use this value'
  });

API Documentation

The top-level of nconf is an instance of the nconf.Provider abstracts this all for you into a simple API.

nconf.add(name, options)

Adds a new store with the specified name and options. If options.type is not set, then name will be used instead:

  nconf.add('supplied', { type: 'literal', store: { 'some': 'config' } });
  nconf.add('user', { type: 'file', file: '/path/to/userconf.json' });
  nconf.add('global', { type: 'file', file: '/path/to/globalconf.json' });

nconf.any(names, callback)

Given a set of key names, gets the value of the first key found to be truthy. The key names can be given as separate arguments or as an array. If the last argument is a function, it will be called with the result; otherwise, the value is returned.

  //
  // Get one of 'NODEJS_PORT' and 'PORT' as a return value
  //
  var port = nconf.any('NODEJS_PORT', 'PORT');

  //
  // Get one of 'NODEJS_IP' and 'IPADDRESS' using a callback
  //
  nconf.any(['NODEJS_IP', 'IPADDRESS'], function(err, value) {
    console.log('Connect to IP address ' + value);
  });

nconf.use(name, options)

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' });

nconf.remove(name)

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.required(keys)

Declares a set of string keys to be mandatory, and throw an error if any are missing.

  nconf.defaults({
    keya: 'a',
  });

  nconf.required(['keya', 'keyb']);
  // Error: Missing required keys: keyb

You can also chain .required() calls when needed. for example when a configuration depends on another configuration store

config
  .argv()
  .env()
  .required([ 'STAGE']) //here you should have STAGE otherwise throw an error
  .file( 'stage', path.resolve( 'configs', 'stages', config.get( 'STAGE' ) + '.json' ) )
  .required([ 'OAUTH:redirectURL']) // here you should have OAUTH:redirectURL, otherwise throw an error
  .file( 'oauth', path.resolve( 'configs', 'oauth', config.get( 'OAUTH:MODE' ) + '.json' ) )
  .file( 'app', path.resolve( 'configs', 'app.json' ) )
  .required([ 'LOGS_MODE']) // here you should haveLOGS_MODE, otherwise throw an error
  .add( 'logs', {
    type: 'literal',
    store: require( path.resolve( 'configs', 'logs', config.get( 'LOGS_MODE' ) + '.js') )
  } )
  .defaults( defaults );

Storage Engines

Memory

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.

All built-in storage engines inherit from the Memory store.

Basic usage:

  nconf.use('memory');

Options

The options defined below apply to all storage engines that inherit from Memory.

accessSeparator: string (default: ':')

Defines the separator used to get or set data using the get() and set() methods. Even if this is changed, the default "colon" separator will be available unless explicitly disabled (see disableDefaultAccessSeparator).

inputSeparator: string (default: '__')

This option is used by the argv and env storage engines when loading values. Since most systems only allow dashes, underscores, and alphanumeric characters in environment variables and command line arguments, the inputSeparator provides a mechanism for loading hierarchical values from these sources.

disableDefaultAccessSeparator: {true|false} (default: false)

Disables the default access separator of ':', which is always available otherwise. This is mainly used to preserve legacy behavior. It can also be used to set keys that contain the default separator (e.g. { 'some:long:key' : 'some value' }).

Argv

Responsible for loading the values parsed from process.argv by yargs into the configuration hierarchy. See the yargs option docs for more on the option format.

Options

parseValues: {true|false} (default: false)

Attempt to parse well-known values (e.g. 'false', 'true', 'null', 'undefined', '3', '5.1' and JSON values) into their proper types. If a value cannot be parsed, it will remain a string.

transform: function(obj)

Pass each key/value pair to the specified function for transformation.

The input obj contains two properties passed in the following format:

{
  key: '<string>',
  value: '<string>'
}

The transformation function may alter both the key and the value.

The function may return either an object in the same format as the input or a value that evaluates to false. If the return value is falsey, the entry will be dropped from the store, otherwise it will replace the original key/value.

Note: If the return value doesn't adhere to the above rules, an exception will be thrown.

Examples

  //
  // Can optionally also be an object literal to pass to `yargs`.
  //
  nconf.argv({
    "x": {
      alias: 'example',
      describe: 'Example description for usage generation',
      demand: true,
      default: 'some-value',
      parseValues: true,
      transform: function(obj) {
        if (obj.key === 'foo') {
          obj.value = 'baz';
        }
        return obj;
      }
    }
  });

It's also possible to pass a configured yargs instance

  nconf.argv(require('yargs')
    .version('1.2.3')
    .usage('My usage definition')
    .strict()
    .options({
      "x": {
        alias: 'example',
        describe: 'Example description for usage generation',
        demand: true,
        default: 'some-value'
      }
    }));

Env

Responsible for loading the values parsed from process.env into the configuration hierarchy. By default, the env variables values are loaded into the configuration as strings.

Options

lowerCase: {true|false} (default: false)

Convert all input keys to lower case. Values are not modified.

If this option is enabled, all calls to nconf.get() must pass in a lowercase string (e.g. nconf.get('port'))

parseValues: {true|false} (default: false)

Attempt to parse well-known values (e.g. 'false', 'true', 'null', 'undefined', '3', '5.1' and JSON values) into their proper types. If a value cannot be parsed, it will remain a string.

transform: function(obj)

Pass each key/value pair to the specified function for transformation.

The input obj contains two properties passed in the following format:

{
  key: '<string>',
  value: '<string>'
}

The transformation function may alter both the key and the value.

The function may return either an object in the same format as the input or a value that evaluates to false. If the return value is falsey, the entry will be dropped from the store, otherwise it will replace the original key/value.

Note: If the return value doesn't adhere to the above rules, an exception will be thrown.

readOnly: {true|false} (default: true)

Allow values in the env store to be updated in the future. The default is to not allow items in the env store to be updated.

Examples

  //
  // Can optionally also be an Array of values to limit process.env to.
  //
  nconf.env(['only', 'load', 'these', 'values', 'from', 'process.env']);

  //
  // Can also specify an input separator for nested keys
  //
  nconf.env('__');
  // Get the value of the env variable 'database__host'
  var dbHost = nconf.get('database:host');

  //
  // Can also lowerCase keys.
  // Especially handy when dealing with environment variables which are usually
  // uppercased while argv are lowercased.
  //

  // Given an environment variable PORT=3001
  nconf.env();
  var port = nconf.get('port') // undefined

  nconf.env({ lowerCase: true });
  var port = nconf.get('port') // 3001

  //
  // Or use all options
  //
  nconf.env({
    inputSeparator: '__',
    match: /^whatever_matches_this_will_be_whitelisted/
    whitelist: ['database__host', 'only', 'load', 'these', 'values', 'if', 'whatever_doesnt_match_but_is_whitelisted_gets_loaded_too'],
    lowerCase: true,
    parseValues: true,
    transform: function(obj) {
      if (obj.key === 'foo') {
        obj.value = 'baz';
      }
      return obj;
    }
  });
  var dbHost = nconf.get('database:host');

Literal

Loads a given object literal into the configuration hierarchy. Both nconf.defaults() and nconf.overrides() use the Literal store.

  nconf.defaults({
    'some': 'default value'
  });

File

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. Note a custom key must be supplied as the first parameter for hierarchy to work if multiple files are used.

  nconf.file('path/to/your/config.json');
  // add multiple files, hierarchically. notice the unique key for each file
  nconf.file('user', 'path/to/your/user.json');
  nconf.file('global', 'path/to/your/global.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.

If the file does not exist at the provided path, the store will simply be empty.

Encrypting file contents

As of [email protected] it is now possible to encrypt and decrypt file contents using the secure option:

nconf.file('secure-file', {
  file: 'path/to/secure-file.json',
  secure: {
    secret: 'super-secretzzz-keyzz',
    alg: 'aes-256-ctr'
  }
})

This will encrypt each key using crypto.createCipheriv, defaulting to aes-256-ctr. The encrypted file contents will look like this:

{
  "config-key-name": {
    "alg": "aes-256-ctr", // cipher used
    "value": "af07fbcf",   // encrypted contents
    "iv": "49e7803a2a5ef98c7a51a8902b76dd10" // initialization vector
  },
  "another-config-key": {
    "alg": "aes-256-ctr",   // cipher used
    "value": "e310f6d94f13", // encrypted contents
    "iv": "b654e01aed262f37d0acf200be193985" // initialization vector
  },
}

Redis

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 });

Installation

  npm install nconf --save

Run Tests

Tests are written in vows and give complete coverage of all APIs and storage engines.

  $ npm test

Author: Charlie Robbins

License: MIT

More Repositories

1

broadway

Lightweight App extensibility and hookable middleware customization.
JavaScript
250
star
2

node-pkginfo

An easy way to expose properties on a module from a package.json
JavaScript
160
star
3

ps-tree

JavaScript
148
star
4

nodejs-intro

My introduction presentation to node.js along with sample code at various stages of building a simple RESTful web service with director, cradle, winston, optimist, and http-console.
JavaScript
128
star
5

node-schema-org

A node.js library that retrieves, parses and provides all schemas from schema.org
JavaScript
105
star
6

http-agent

A simple agent for performing a sequence of http requests in node.js
JavaScript
92
star
7

errs

Simple error creation and passing utilities
JavaScript
74
star
8

roadmap

A simple CLI script to generate a formatted Roadmap from Github issues and milestones
JavaScript
55
star
9

node-asana-api

A node.js client implementation for Asana API.
JavaScript
41
star
10

fashion-show

Build consistent and versioned styleguides by including and running consistent lint files across projects.
JavaScript
26
star
11

nconf-redis

A redis store for nconf
JavaScript
26
star
12

populist-style

A (one day) auto-updating style at the mercy of the people, and only the people.
JavaScript
22
star
13

presentations

Various presentations that I have made over the span of my time on this pale blue dot.
JavaScript
20
star
14

window-stream

A collection of streams for Windowing events
JavaScript
18
star
15

uuid-time

Get time from RFC4122 uuids
JavaScript
13
star
16

license-tree

Read a tree of files and check for licenses.
JavaScript
12
star
17

dotfiles

Seemed like the thing do to. My dotfiles.
Shell
12
star
18

morgan-json

A variant of `morgan.compile` that provides format functions that output JSON
JavaScript
12
star
19

node-procfile

Procfile parser for node.js
JavaScript
10
star
20

month-ends

Purposefully simple and dependency free functions for calendar months
JavaScript
10
star
21

twitter-no-backend

A simple example of how to use Twitter without any backend.
CSS
10
star
22

picasso

Feather weight CLI tool for synching Github issue labels across repos.
JavaScript
10
star
23

changes

A consistent, fault tolerant CouchDB _changes listener with pre-fetch support
JavaScript
9
star
24

npm-static-stats

Comprehensive static analysis for npm packages through esprima
JavaScript
8
star
25

npm-pipeline

Analysis pipeline for npm packages
JavaScript
8
star
26

xlsx-rows

Parses an *.xlsx file into rows
JavaScript
8
star
27

wpf-window-chrome

A set of controls for using custom window chrome in WPF
C#
7
star
28

node-checkout

Pull down local or remote repositories to local directories.
JavaScript
7
star
29

git-semver2-tag

Upgrades any semver 1.0 tags to semver 2.0. e.g. "v1.0.0" becomes "1.0.0"
JavaScript
6
star
30

exceptiony

A simple remote logging service written in node.js
JavaScript
6
star
31

baltar

A few small utilities for working with tarballs and http.
JavaScript
6
star
32

celluloid

Celluloid is a reactive, input-output oriented language with support for blocks and timelines designed to make both simple and complex media composition operations more comprehensible to the author.
Java
6
star
33

footage

Get your Open Source game footage up to speed.
JavaScript
5
star
34

conver

Comparisons for concrete semantic versions (i.e. compare 1.2.3 instead of ^1.2.3)
JavaScript
5
star
35

git-lint

Lint gitconfig files for fun and profit
JavaScript
5
star
36

node-objs

A complete set of utilities for working with Objects.
JavaScript
5
star
37

fgnpmr

For those special times when replicating npm just won't cut it
JavaScript
4
star
38

npm-publish-split-stream

Splits an npm publish request using jsonstream and duplexify
JavaScript
4
star
39

postcss-global-scss-vars

Inject global variables into your scss using postcss
JavaScript
4
star
40

npm-verify-stream

A duplex stream for receiving a package tarball, verifying arbitrary checks, and emitting that same tarball on success.
JavaScript
4
star
41

hungry-birds

CLI tool for dumping various twitter API results to JSON file(s).
JavaScript
4
star
42

node-artsy

A Node.js client for the Artsy API
JavaScript
3
star
43

npmcount

Silly program that counts number of npm packages from one or more users.
JavaScript
3
star
44

vbump

A very simple version bumping script I've been using for years.
Shell
3
star
45

d3.hexhex

Make a hexagon out of other hexagons in d3
JavaScript
3
star
46

quasar

A Silverlight Control Library
C#
3
star
47

postcss-strip-font-face

PostCSS plugin to completely strip @font-face rules from css. In other words: koh the @font-face stealer.
JavaScript
3
star
48

bruce-wayne

A collection of projects and samples written as Bruce Wayne (read: .NET Developer)
C#
3
star
49

dotnet-tools

A set of macros, snippets, and other files that can be really useful for .NET development
Visual Basic
3
star
50

prism-insertable-regions

Extends Prism v2 to allow IRegion to support the Insert operation
C#
2
star
51

designer-mvvm-toolkit

A small set of Model-View-ViewModel tools for implementing Designer Friendly MVVM applications in WPF and Silverlight
C#
2
star
52

npm-codependencies

Calculate codependency relationships for npm modules.
JavaScript
2
star
53

isla.js

A Javascript runtime environment for the Isla language
JavaScript
2
star
54

tar-buffer

Buffers entries from a tar.Parse() stream into memory
JavaScript
2
star
55

npm-comp-stat-www

A set of statistical visualizations for npm packages
JavaScript
2
star
56

nerf-gun

A tiny utility that returns nerf darts from URLs for npm.
JavaScript
2
star
57

es6wtf

It's like wtfjs, but for ES6 only
2
star
58

jsonm

A complete json parser written using MGrammar and C#
C#
2
star
59

wildcodes

My solutions to http://www.trywildcard.com/challenge
JavaScript
2
star
60

read-ssl

A simple node library to read SSL certificate files according to a basic convention.
JavaScript
2
star
61

surface-raw-input

A collection of behaviors for capturing and working with raw input on the Microsoft Surface
C#
2
star
62

homebase-parser

Parser & file reader for the ABE Homebase 2.0 text (*.txt) format.
JavaScript
1
star
63

gifs

They move. They're funny. They're protected under DMCA.
1
star
64

zoho-inventory

Fetch-based API client for the Zoho Inventory API
JavaScript
1
star
65

radiant-scribbish-theme

A port of the scribbish theme to RadiantCMS
JavaScript
1
star
66

ux-logging-toolkit

A toolkit of WPF behaviors and services for logging UX events in a sessions aware manner.
C#
1
star
67

js-lint-compat

Comparison of options for various linting tools. Currently eshint, jshint, and jscs.
1
star
68

npm-package-buffer

Buffers entries from a tar.Parse() stream for an npm package into memory
JavaScript
1
star
69

npmignore-tests

Tells you what modules in `node_modules` npmignore tests
JavaScript
1
star
70

voicebox-www

A bump UI for VoiceBox karaoke
CSS
1
star
71

node-clf-parser

A basic parser for the common log format seen in apache and nginx logs
JavaScript
1
star
72

shared-mocha-suite

An interface to define shareable, configurable mocha tests for use in multiple mocha executions
1
star
73

tap-flattener

Flattens tap output including subtests into a single level hierarchy
JavaScript
1
star