An open API service indexing awesome lists of open source software.

https://github.com/plimble/envconfik

nodejs env config
https://github.com/plimble/envconfik

Last synced: 7 months ago
JSON representation

nodejs env config

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'});
```