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

configs-overload

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

configs-overload

Load configs with ease

  • 0.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-25%
Maintainers
2
Weekly downloads
 
Created
Source

configs-overload Build Status

Load configs with ease

Installation

npm install configs-overload

Example

Consider, you have directory with following structure:

.
└── configs
    ├── default.js
    ├── development.js
    ├── production.js
    ├── stress.json
    └── testing
        └── index.js

And this code in application:

var config = require('configs-overload')('/configs', { env: 'production' });

configs-overoload will load configs from default.js and extend them with object loaded production.js.

API

configs-overload([directory, options])

directory

Type: String Default: path.join(process.cwd(), 'configs')

Path to directory with config files.

options

Type: Object

  • defaultEnv - name of default environment, which will be overloaded with current environment (default: default)
  • env - Environment name which will override defaultEnv.

Environment variables

  • NODE_CONFIG_DIR - default directory, if it not specified in options.
  • NODE_DEFAULT_ENV - "default" environment name
  • NODE_ENV - environment name

Methods

  • extend(...objects) - loads configs in directory over already loaded. Object can be:
    • string with path to file - require(path) and extend config with result.
    • string with path to directory - load configs directory in directory in default order.
    • object - extend config with object.

License

MIT

Keywords

FAQs

Package last updated on 06 Mar 2014

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