Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 397 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 397 Bytes

Settings module

Load config files from the CONFIG environment variable.

Using settings-module

Node config is very simple. You set the filepath to the CONFIG environment variable and settings-module will load it for you.

// config.js
exports.API_KEY = 'TEST';

// lib/index.js
// process.env.CONFIG = ./config.js
const Config = require('settings-module');
Config.get('API_KEY');