1.1.0 • Published 7 years ago

little-man-config v1.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

A more friendly way to use config file when you have many env,let the env config to merge default config

npm i little-man-config --save

demo

config/app.json

{
  "hello":"app in default"
}

config/env/app.json

{
  "hello":"app in test"
}

app.js

var configure = require('little-man-config');

console.log(configure.get('app'));

NODE_ENV=test node app.js

output

{
  "hello":"app in test"
}

support .js, .json, .node, .yaml, .yml

default NODE_ENV is dev