Skip to content

screenrev/node-local-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

local config

require your local config file easily from anywhere in your project without having to navigate directories.

painful

	var config = require('../../../../config');

the local config way

	var config = require('local-config');

Installation

npm install local-config

Usage

Create a config.js or config.json file in your project root. Or you can create config/ folder (with an index.js or package.json file).

JSON files are imported as plain JavaScript objects, .js files should export your config in the format which you would prefer.

Example

config.js

	module.exports = {
		environment: 'live',
		password: 'y0uW0ntGu355'
	}

About

Node.js "require" your local config file easily from anywhere in your project without having to navigate directories.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published