app-config-lite
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

app-config-lite

A simple library for loading application settings from the environment or a configuration file.

Build Status codecov

const { AppConfigLite } = require('app-config-lite');
 
const config = AppConfigLite.init('app-name');
 
config.set('transient-setting', 'value');
 
const setting = config.get('transient-setting');

Installation

$ npm install --save app-config-lite

Usage

Initialize app-config-lite in your application's start up file.

const { AppConfigLite } = require('app-config-lite');
 
const config = AppConfigLite.init('app-name');

Once initialized, app-config-lite behaves as a singleton. A reference to your configuration can be access via

const { AppConfigLite } = require('app-config-lite');
 
const config = AppConfigLite.Instance;

By default, a configuration file is generated in the home directory of the user running the application: ~/.config//config.json

app-config-lite has a simple get/set interface.

config.get('path.to.target.property');
 
config.set('path.to.target.property', 'property_value');

Behavior

GET

Calling config.get('path.to.target.property') will

  1. check the environment for a PATH_TO_TARGET_PROPERTY variable.
  2. if no environment variable exists, it checks the config.json file generated during initalization:
{
  "path":{
    "to": {
      "target": {
        "property": "value"
      }
    }
  }
}

SET

Calling config.set('transientVariable') will create a setting that is available for the life of the application. The value is not saved when the application exits.

Tests

$ npm install
$ npm test

License

MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.2
    2
    • latest

Version History

Package Sidebar

Install

npm i app-config-lite

Weekly Downloads

2

Version

2.0.2

License

MIT

Unpacked Size

12.1 kB

Total Files

15

Last publish

Collaborators

  • nomnomnpm