@ladjs/env

Environment configuration loader for Lad

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@ladjs/env
804.0.0a year ago7 years agoMinified + gzip package size for @ladjs/env in KB

Readme

build status code style styled with prettier made with lass license()
Environment configuration loader for Lad

Table of Contents

Install

npm install @ladjs/env
## Usage

```js
const env = require('@ladjs/env')();

console.log(env);

Options

You can pass any option as you otherwise would normally to dotenv-extended.
Here is the default option argument, note that it supports a .env.test path for TEST and TESTING environments as specified through process.env.NODE_ENV.
const env = require('@ladjs/env')({
  encoding: 'utf8',
  silent: true,
  path: '.env',
  defaults: '.env.defaults',
  schema: '.env.schema',
  errorOnMissing: true,
  errorOnExtra: true,
  errorOnRegex: false,
  includeProcessEnv: true,
  assignToProcessEnv: true,
  overrideProcessEnv: false,
});

Contributors

| Name | Website | | -------------- | -------------------------- | | Nick Baugh | |

License

MIT © Nick Baugh
#