4.0.3 • Published 1 year ago

confiig v4.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
1 year ago

confiig

Super simple config loader. confiig loads configuration based on NODE_ENV environment variable.

Getting Started

$ npm install confiig

Usage

Basically, configuration loads from ./config directory.
You can set CONFIG_PATH environment variable to change default config path.
confiig tries to load config file that named like BUILD_PHASE or NODE_ENV + '.js'.

├── config
│   ├── cbt.js
│   ├── default.js
│   ├── development.js
│   ├── local.js
│   ├── production.js
│   └── sandbox.js
const conf = require('confiig');

console.log(conf.read('foo.bar'));

Default config

If 'default.js' config file exists in config path then configuration consisted based on the 'default' file and merged NODE_ENV configs into default one.

Multiple Configs

Multiple configs can be merged with separator. For example, set NODE_ENV with separator / like local/foo then default.js + local.js + foo.js configs are merged.

Dynamic NODE_ENV

If the NODE_ENV or BUILD_PHASE environment variable changes, it will automatically reread and merge the config files and return the path values when you call the read method. If no changes that environment variable, then it memoization that merged configs.

const conf = require('confiig');

process.env.NODE_ENV = 'development';
console.log(conf.read('foo.bar')); // development config value

process.env.NODE_ENV = 'sandbox';
console.log(conf.read('foo.bar')); // sandbox config value

API

.read(path, [defaultValue])

path (string): The path of the property to get.
defaultValue (any): The value returned for undefined resolved values. Optional.
returns (any): the value in the config if found, otherwise it returns undefined.

4.0.1

1 year ago

4.0.0

1 year ago

4.0.3

1 year ago

4.0.2

1 year ago

3.1.2

4 years ago

3.1.1

4 years ago

3.1.0

4 years ago

3.0.1

4 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.0.0

4 years ago