Socket
Socket
Sign inDemoInstall

@poppinss/env

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@poppinss/env

Environment variable manager for Node.js


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Env

circleci-image npm-image license-image

Environment variables parser and reader for Node.js. This module parses the raw string in dotfile format and set process.env variables from it. Also, you can make use of bash like syntax for variable interpolation.

Table of contents

Usage

Install the package from npm as follows:

npm i @poppinss/env

# yarn
yarn add @poppinss/env

and then use it as follows

import { env } from '@poppinss/env'

env.process(`
  PORT=3333
  HOST=127.0.0.1
`)

and then read the values as follows

env.get('PORT')

// or
process.env.PORT

The Env.process method will not overwrite the existing environment variables (that is how it should be). However, if you want to overwrite existing values, maybe inside testing environment, then you can call the process method as follows:

env.process('PORT=3333', true)

Casting values

The values saved as environment variables are always string. However, this module does the values casting for you, when you read them using Env.get.

env.process(`
  CACHE_VIEWS=false
`)

process.env.CACHE_VIEWS // string
env.get('CACHE_VIEWS') // boolean

Following values are casted

.env ValueCasted value
'null'null
'true'true
'1'true
'false'false
'0'false

Variable interpolation

You can also reference environment variables by using bash like interpolation syntax.

env.process(`
  HOST=localhost
  PORT=3333
  URL=$HOST:$PORT
`)

All letter, numbers and _ after the dollar sign will be considered as a variable reference. Any other characters apart from the above mentioned aren't allowed. However, you can wrap your variable substitution inside curly braces {} when using characters other than the whitelisted one's.

Following will fail

The following reference to $REDIS-USER will fail, since the parser will stop at - and consider USER as a static string.

env.process(`
  REDIS-USER=foo
  REDIS-URL=localhost@$REDIS-USER
`)

Do this instead

The usage of curly braces {} tells the parser to parse until the closing brace.

env.process(`
  REDIS-USER=foo
  REDIS-URL=localhost@${REDIS-USER}
`)

Escape characters

Quite often, you will have strings where you want the $ dollar character to be considered as a literal value. In that case you can escape the character as follows.

env.process(`
  PASSWORD=pa\\$\\$word
`)

process.env.PASSWORD // pa$$word

DO NOTE: The usage of double escape \\ is required when you are typing the string directly in Javascript, since the first escape is swallowed by JS. However, if you are writing the enviornment variables inside the .env file, then a single escape \ is required.

API

Following are the autogenerated files via Typedoc

Maintainers

Harminder virk

Keywords

FAQs

Package last updated on 29 Aug 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc