Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@cookielab.io/configuration

Package Overview
Dependencies
Maintainers
4
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cookielab.io/configuration

This package is meant to help you work with environment variables safely. It is wrapper around [doenv-safe](https://www.npmjs.com/package/dotenv-safe) package.

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
4
Created
Source

Overview

This package is meant to help you work with environment variables safely. It is wrapper around doenv-safe package.

You have to call loadDotEnvConfig() function to make sure all ENV variables are loaded.

You can ensure their presence in environment by using variable() function to load all ENV variables values. You can also set their default value if not present.

Installation

$ npm install --save @cookielab.io/configuration

or

$ yarn add @cookielab.io/configuration

Usage

import {loadDotEnvConfig, variable} from '@cookielab.io/configuration';

// assuming .env file in the project root and the config file in ./src/config
loadDotEnvConfig(`${__dirname}/../../`);

export default {
    environment: variable('ENVIRONMENT'),
    https: variable('HTTPS') === 'enabled',
    port: parseInt(variable('PORT', '3000'), 10),
};

Api

variable(name: string, defaultValue?: string): string

Throws an error if the variable is not set and does not have default value.

load(options: Object): void

Wrapper around require('dotenv-safe').config. Available options.

loadDotEnvConfig(rootDir: string): void

Wrapper around load(). It forces loading of .env.example file to be used as ENV variables source when jest is present.

It also checks DISABLE_DOTENV_CONFIG ENV variable to be true not to use and require .env files at all (for production environment usage).

FAQs

Package last updated on 17 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts