A module for easily handling environment variables in Node.js projects with support for .yml and .json configuration.
Go to file
2017-01-21 11:51:35 +01:00
dist remove beautylog dependency 2017-01-21 11:51:30 +01:00
test remove beautylog dependency 2017-01-21 11:51:30 +01:00
ts remove beautylog dependency 2017-01-21 11:51:30 +01:00
.gitignore remove beautylog dependency 2017-01-21 11:51:30 +01:00
.gitlab-ci.yml add better README 2016-12-31 19:26:32 +01:00
.npmignore initial 2016-06-19 17:33:54 +02:00
npmts.json initial 2016-06-19 17:33:54 +02:00
package.json 1.1.2 2017-01-21 11:51:35 +01:00
README.md add better README 2016-12-31 19:26:32 +01:00
tslint.json add better README 2016-12-31 19:26:32 +01:00

qenv

easy promised environments

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

qenv works with two files:

  • qenv.yml - specifies which ENV vars are required.
  • env.yml - specifies all env vars that are not already set in the current environment.

Now obviously you can set build specific env vars in many CI environments. So there we do not need an env.yml since all ENV vars are in place However when on another machine you can have a env.yml that will be added to the environment by qenv.

import {Qenv} from "qenv";

myQenv = new Qenv("path/to/dir/where/qenv.yml/is/","path/to/dir/where/env.yml/is(");

npm