Package Exports
- yenv
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (yenv) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
yenv
Manage environment stuff with YAML.
Installation
npm install --save yenvRequires node v4.x or above.
Usage
Declaring variables in a file (eg. env.yaml):
# Development-specific settings.
development:
PORT: 3000
DROP_DATABASE: true
# Production-specific settings.
production:
PORT: 80
DROP_DATABASE: falseReading the file:
const yenv = require('yenv');
// Default filename is env.yaml.
const env = yenv();
// You can call it with a filename, too.
const env = yenv('env.yaml');
// The top-level element in the YAML-file is used to
// read the correct set of variables. The value is grabbed
// from `process.env.NODE_ENV`. To explicitly specify it, use:
const env = yenv('env.yaml', { env: 'production' });
console.log(env.PORT);
console.log(env.DROP_DATABASE);Environment variables
When a variable is defined in the environment, it will take precedence over
whatever was defined in the yaml-file.
This means that if your hosting provider (Heroku, Azure, whatever...) sets the
PORT variable, then that's the variable that will be used.
Author
Jeff Hansen - @Jeffijoe