Package Exports
- env-var
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (env-var) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
env-var
Verification, sanatization, and type coercion for environment variables in Node.js
Install
npm install env-var --save
Usage
In the example below we read the environment variable DB_PASSWORD
const env = require('env-var');
const PASSWORD = env.get('DB_PASSWORD')
// Throws an error if the DB_PASSWORD variable is not set (optional)
.required()
// Convert DB_PASSWORD from base64 to a regular utf8 string (optional)
.convertFromBase64()
// Call asString (or other methods) to get the variable value (required)
.asString();
TypeScript / ES6
import * as env from 'env-var';
// Read a PORT environment variable and verify it's a positive integer.
// If port is not set then we throw an error
const PORT = env.get('PORT').required().asIntPositive();
Why use this?
Because this:
const env = require('env-var');
const MAX_BATCH_SIZE = env.get('MAX_BATCH_SIZE').required().asInt();
Is cleaner than this:
const assert = require('assert');
// Our program requires this var to be set
assert.notEqual(
process.env.MAX_BATCH_SIZE,
undefined,
'MAX_BATCH_SIZE environment variable must be set'
);
// Read the var, and use parseInt to make it a number
const MAX_BATCH_SIZE = parseInt(process.env.MAX_BATCH_SIZE, 10);
// Check the var is a valid number, if not throw
assert(
typeof MAX_BATCH_SIZE === 'number' && !isNaN(MAX_BATCH_SIZE),
'MAX_BATCH_SIZE env var must be a valid number'
);
API
env.get([varname, [default]])
You can call this function 3 different ways:
const env = require('env-var')
// #1 - Return the requested variable (we're also checking it's a positive int)
const limit = env.get('SOME_LIMIT').asIntPositive()
// #2 - Return the requested variable, or use the given default if it isn't set
const limit = env.get('SOME_LIMIT', '10').asIntPositive()
// #3 - Return the environment object (process.env)
const allvars = env.get()
env.EnvVarError
This is the error class used to represent errors raised by this module. Sample usage:
const env = require('env-var')
try {
// will throw if you have not set this variable
env.get('MISSING_VARIABLE').required().asString()
// if catch error is set, we'll end up throwing here instead
throw new Error('some other error')
} catch (e) {
if (e instanceof env.EnvVarError) {
console.log('we got an env-var error', e)
} else {
console.log('we got some error that wasn\'t an env-var error', e)
}
}
variable
A variable is returned by calling env.get
. It has the exposes the following
functions to validate and access the underlying value.
required()
Ensure the variable is set on process.env. If the variable is not set this
function will throw an EnvVarError
. If the variable is set it returns itself
so you can access the underlying variable.
For example:
const env = require('env-var')
// Read PORT variable and ensure it's a positive integer. If it is not a
// positive integer or is not set the process will exit with an error (unless
// you catch it using a try/catch or "uncaughtException" handler)
const PORT = env.get('PORT').required().asIntPositive()
app.listen(PORT)
convertFromBase64()
Sometimes environment variables need to be encoded as base64. You can use this function to convert them before reading their value.
For example if we run the script script below, using the command DB_PASSWORD= $(echo -n 'secret_password' | base64) node
, we'd get the following results:
console.log(process.env.DB_PASSWORD) // prints "c2VjcmV0X3Bhc3N3b3Jk"
// dbpass will contain the value "secret_password"
const dbpass = env.get('DB_PASSWORD').convertFromBase64().asString()
asEnum(validValues: string[])
Converts the value to a string, and matches against the list of valid values. If the value is not valid, an error will be raised describing valid input.
asInt()
Attempt to parse the variable to an integer. Throws an exception if parsing fails. This is a strict check, meaning that if the process.env value is "1.2", an exception will be raised rather than rounding up/down.
asIntPositive()
Performs the same task as asInt(), but also verifies that the number is positive (greater than zero).
asIntNegative()
Performs the same task as asInt(), but also verifies that the number is negative (less than zero).
asFloat()
Attempt to parse the variable to a float. Throws an exception if parsing fails.
asFloatPositive()
Performs the same task as asFloat(), but also verifies that the number is positive (greater than zero).
asFloatNegative()
Performs the same task as asFloat(), but also verifies that the number is negative (less than zero).
asString()
Return the variable value as a String. Throws an exception if value is not a String. It's highly unlikely that a variable will not be a String since all process.env entries you set in bash are Strings by default.
asBool()
Attempt to parse the variable to a Boolean. Throws an exception if parsing fails. The var must be set to either "true", "false" (upper or lowercase), 0 or 1 to succeed.
asBoolStrict()
Attempt to parse the variable to a Boolean. Throws an exception if parsing fails. The var must be set to either "true" or "false" (upper or lowercase) to succeed.
asJson()
Attempt to parse the variable to a JSON Object or Array. Throws an exception if parsing fails.
asJsonArray()
The same as asJson but checks that the data is a JSON Array, e.g [1,2].
asJsonObject()
The same as asJson but checks that the data is a JSON Object, e.g {a: 1}.
asArray([delimiter: string])
Reads an environment variable as a string, then splits it on each occurence of the specified delimiter. By default a comma is used as the delimiter. For example a var set to "1,2,3" would become ['1', '2', '3'].
asUrlString()
Verifies that the variable is a valid URL string and returns that string. Uses
is-url
to perform validation, so check that module for validation rules.
asUrlObject()
Verifies that the variable is a valid URL string, then parses it using
url.parse
from the Node.js core url
module and returns the parsed Object.
See the Node.js docs for more info
mock(valuesMap)
Can be used during testing for mocking of environment variables.
const env = require('env-var')
const mockedEnv = env.mock({
API_BASE_URL: 'https://my.api.com/'
})
// apiUrl will be 'https://my.api.com/'
const apiUrl = mockedEnv.get('API_BASE_URL').asUrlString()
Examples
const env = require('env-var');
// Normally these would be set using "export VARNAME" or similar in bash
process.env.STRING = 'test';
process.env.INTEGER = '12';
process.env.BOOL = 'false';
process.env.JSON = '{"key":"value"}';
process.env.COMMA_ARRAY = '1,2,3';
process.env.DASH_ARRAY = '1-2-3';
// The entire process.env object
const allVars = env.get();
// Returns a string. Throws an exception if not set
const stringVar = env.get('STRING').required().asString();
// Returns an int, undefined if not set, or throws if set to a non integer value
const intVar = env.get('INTEGER').asInt();
// Return a float, or 23.2 if not set
const floatVar = env.get('FLOAT', '23.2').asFloat();
// Return a Boolean. Throws an exception if not set or parsing fails
const boolVar = env.get('BOOL').required().asBool();
// Returns a JSON Object, undefined if not set, or throws if set to invalid JSON
const jsonVar = env.get('JSON').asJson();
// Returns an array if defined, or undefined if not set
const commaArray = env.get('COMMA_ARRAY').asArray();
// Returns an array if defined, or undefined if not set
const commaArray = env.get('DASH_ARRAY').asArray('-');
// Returns the enum value if it's one of dev, test, or live
const enumVal = env.get('ENVIRONMENT').asEnum(['dev', 'test', 'live'])
Contributors
- @caccialdo
- @evanshortiss
- @hhravn
- @itavy
- @MikeyBurkman
- @pepakriz
- @rmblstrp
Contributing
Contributions are welcomed. If you'd like to discuss an idea open an issue, or a PR with an initial implementation.
If you want to add a new type it's easy. Add a file to lib/accessors
,
with the name of the type e.g add a file named number-zero.js
into that folder
and populate it with code following this structure:
/**
* Validate that the environment value is an integer and equals zero.
* @param {Function} raiseError use this to raise a cleanly formatted error
* @param {String} environmentValue this is the string from process.env
*/
module.exports = function numberZero (raiseError, environmentValue) {
// Your custom code should go here...below code is an example
const val = parseInt(environmentValue)
if (val === 0) {
return ret;
} else {
raiseError('should be zero')
}
}
Next update the accessors
Object in getVariableAccessors()
in
lib/variable.js
to include your new module. The naming convention should be of
the format "asTypeSubtype", so for our number-zero
example it would be done
like so:
asNumberZero: generateAccessor(container, varName, defValue, require('./accessors/number-zero')),
Once you've done that, add some unit tests and use it like so:
// Uses your new function to ensure the SOME_NUMBER is the integer 0
env.get('SOME_NUMBER').asNumberZero()