config-light

1.0.1 • Public • Published

config-light


NPM version Build Status

A super simple & flexible & intuitive config module, support yaml & toml.

Install

$ npm i config-light --save
### Usage

```js
const config = require('config-light')();

or:

const config = require('config-light')({
  filename: 'test',
  config_basedir: __dirname,
  config_dir: 'config'
});

Options

  • filename: config file name, default: default, support: ['.js', '.json', '.node', '.yaml', '.yml', '.toml'].
  • config_basedir: directory for begining bubbling find config directory.
  • config_dir: config directory name, default: config.
  • config: default config object that overwrite config file.

Priority

environment option > custom option > default option

For example:

$ NODE_ENV=test NODE_CONFIG='{"port":3000}' node app.js --port=3001

loading order:

--port=3001 > NODE_CONFIG='{"port":3000}' > opt.config > test config file > default config file

Environment Variables

  • NODE_ENV -> filename
  • CONFIG_BASEDIR || NODE_CONFIG_BASEDIR -> config_dirname
  • CONFIG_DIR || NODE_CONFIG_DIR -> config_dir
  • CONFIG || NODE_CONFIG -> config

Test

$ npm test

License

MIT

Package Sidebar

Install

npm i config-light

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

4.96 kB

Total Files

11

Last publish

Collaborators

  • x373241884y