https://github.com/plimble/envconfik
nodejs env config
https://github.com/plimble/envconfik
Last synced: 7 months ago
JSON representation
nodejs env config
- Host: GitHub
- URL: https://github.com/plimble/envconfik
- Owner: plimble
- Created: 2016-01-16T08:03:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-01T18:21:12.000Z (over 10 years ago)
- Last Synced: 2025-10-23T04:30:14.196Z (10 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
envconfik
-------
load config from env
### Installation
```
npm install envconfik
```
### Usage
```js
var defaultConfig = {
mysqlHost: 'test',
mysqlPort: 3000,
price: 10.02,
isReady: false
};
var config = envConf(defaultConfig, {prefix: 'app'});
```