Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

configuration-master

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

configuration-master

Simple configuration load/access tool.

  • 0.1.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
396
increased by152.23%
Maintainers
1
Weekly downloads
 
Created
Source

Configuration Master

This is a simple utility to manage configuration information within your Node.js applications.

Release Notes

v0.1.5

  • prevent Reference error if not using Webpack

v0.1.4

  • adjust method for loading configs. it is now the responsibility of the caller to provide the correct path.

v0.1.3

  • add additional tests

v0.1.2

  • change loader to use path.resolve and require.main.filename

v0.1.1

  • add tests

v0.1.0

  • breaks .direct. functionality from earlier versions.
  • can now access properties directly.
Installation

npm install configuration-master

Usage

initialization

const config = require('configuration-master');

load a config

config.loadConfig('config.json');

or

config.loadConfig('config.json','namespace');

set config from existing object

const settings = {
  settingA: "value A",
  settingB: "value B",
  settingC: "value C"
}

config.setConfig(settings);

or

config.setConfig(settings,'namespace');

get value from config

config.getValue("settingA");  //returns 'value A'

or

config.getValue('settingA', 'namespace');  //returns 'value A'

or

config.namespace.settingsA  //returns 'value A'

FAQs

Package last updated on 27 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc