npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

get-env

v0.5.10

Published

Return `dev`, `prod`, or optional extra environements based on `process.env.NODE_ENV`

Downloads

5,969

Readme

NPM NPM

get-env

get-env is a Node.js library returning dev, prod, or optional extra environments based on process.env.NODE_ENV.

  • get-config uses this library to parse process.env.NODE_ENV.

Why use this library?

Many people use the following simple line of code, but there are some disadvantages to this approach:

const env = process.env.NODE_ENV || 'development';
  1. If your code tests against, development and production (for example), then you must only use those values for NODE_ENV. get-env library accepts multiple alternative values as rules for an environment, therefore you can make unlimited number of aliases to the same environment same. This lets you forget about the exact string value you used in your code, which means you can use whatever value that comes naturally to your mind whenever you switch environments. All environment names matched by this library are case-insensitive as well.

  2. If you supply an unregistered value for NODE_ENV (for example, productoin instead of production -- that is a typo), the env variable is now set to this wrong value and the rest of code that tests against this variable would have an unexpected behavior. This library fixes this problem by throwing an error on unregistered and non-empty value set to NODE_ENV. An empty value is resolved to dev environment.

  3. If you start adding more extra environments (ex: staging, test, etc.) then it won't be a simple one line of code anymore. This library provides consistent, straightforward, and flexible extra environment addition methods therefore you can freely add or remove environments with minimal overhead in your code while keeping all the above mentioned benefits.

Basically, this library provides a consistent, reliable, scalable way to parse the NODE_ENV environment variable so it is ready for you to use from an app targetting multiple environments.

Examples

The following single line of code ...

const env = require('get-env')();

... is equivalent to ...

const nodeEnv = (process.env.NODE_ENV || '').toLowerCase();
var env;
if (nodeEnv === 'prod' || nodeEnv === 'production') {
  env = 'prod';
} else if (nodeEnv === 'dev' || nodeEnv === 'development' || nodeEnv === '') {
  env = 'dev';
} else {
  throw new Error('Unknown environment name: NODE_ENV=' + nodeEnv);
}

For slightly more complex example, the following lengthy code ...

const nodeEnv = process.env.NODE_ENV;
var env;
if (nodeEnv === 'production' || nodeEnv === 'prod') {
  env = 'prod';
} else if (nodeEnv === 'staging') {
  env = 'staging';
} else if (nodeEnv === 'test' || nodeEnv === 'testing') {
  env = 'test';
} else if (nodeEnv === 'dev' || nodeEnv === 'development' || !nodeEnv) {
  env = 'dev';
} else {
  throw new Error('Unknown environment name: NODE_ENV=' + nodeEnv);
}

... can be simplified to ...

const env = require('get-env')({
  staging: 'staging',
  test: ['test', 'testing']
});

Matching rules for process.env.NODE_ENV

  • There are 2 pre-registered environments: dev and prod.
  • prod is returned when any of the following values are set: prod, production
  • dev is returned when the value is empty (default environment) or any of the following values are set: dev, development
  • It throws an error when the value is unregistered and non-empty. (catches typos)
  • It always expects a case-insensitive value. (i.e. NODE_ENV=PROD is equivalent to NODE_ENV=prod)
  • Extra environments can be optionally added in various methods. (see the usage section below)

Installation

$ npm install get-env

Usage

const env = require('get-env')();

This returns either dev or prod. (pre-registered environments)

Extra environments can be optionally added in addition to the pre-registered environments (dev and prod) with any of the following methods:

1. Pass a string

const env = require('get-env')('test');
  • Return test when the value is TEST.
  • Otherwise, return dev or prod. (default rules apply)

2. Pass multiple strings as arguments or an array

const env = require('get-env')('docker', 'test');
// OR
const env = require('get-env')(['docker', 'test']);
  • Return docker when the value is DOCKER.
  • Return test when the value is TEST.
  • Otherwise, return dev or prod. (default rules apply)

3. Pass a plain object

const env = require('get-env')({
  docker: 'docker',  // or 'DOCKER'
  test: ['test', 'testing'],  // or ['TEST', 'TESTING']
  prod: ['pr', 'prod', 'production']  // or ['PR', 'PROD', 'PRODUCTION']
});
  • Return docker when the value is docker.
  • Return test when the value is test or testing.
  • Return prod when the value is pr, prod, or production. (pre-reigstered rules for prod are overriden)
  • Otherwise, return dev.

Credits

See the contributors.

License

Analytics