Coder Social home page Coder Social logo

nconf-load's Introduction

nconf-load

A very simple module to reduce the boilerplate code for loading configuration. The module uses nconf's hierarchical system in the following priority order:

  1. Command line arguments
  2. Environment variables
  3. Configuration file passed to #load([filepath])

Once configuration has been loaded, you can use nconf as you normally would (i.e. nconf.get('appKeyHere'))

Installation

nconf-load is available via npm, so to install, simply:

npm install --save nconf-load

Usage

The main (only) method is #load. This method can be called with or without a path to a config file as an argument and returns an instance of nconf.

Without a configuration file:

var nconf = require('nconf-load').load();

With a configuration file:

var nconf = require('nconf-load').load('./path/to/config.json');

Limitations

This module does not make use of nconf's other file loading methods (nconf.file('key', 'path/to/config.json') and nconf.file('optional_key', { file: 'config.json', dir: 'search/from/here', search: true })). They're on the to-do list, but have not been implemented yet.

Releases

  • v1.2.0 - Added nconf.use('memory') to enable overriding of loaded values
  • v1.1.0 - Added return of nconf instance to #load method to reduce # of requires neeeded by clients

nconf-load's People

Contributors

wbio avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.