0.1.2 • Published 7 years ago

env-yaml v0.1.2

Weekly downloads
1,147
License
-
Repository
github
Last release
7 years ago

env-yaml

Usage

require('env-yaml').config();

Create a .env.yml file in the root dirctory of your project, and add environment-specific variables as valid YAML.

That's it.

process.env now has the keys and values you defined in your .env.yml file.

Options

Path

Default: .env.yml

You can specify a custom path if your file containing environmnet variables is named or located differently.

require('env-yaml').config({ path: '/custom/path/to/your/yaml/env/vars' });

Encoding

Default: utf8

You may specify the encoding of your file containing environment variables using this option.

require('env-yaml').config({ encoding: 'base64' });