rapidenv
v1.1.6
Published
A better way to manage your environment variables.
Downloads
25
Maintainers
Readme
rapidenv
RapidEnv is a zero-dependency library for managing environment variables in Node.js.
Installation
npm install rapidenv
Usage
const env = require('rapidenv')();
env.load(); // Loads the environment variables from the .env file
env.setVariable('TEST', 'hello'); // Sets the TEST variable to hello
env.deleteVariable('TEST'); // Deletes the TEST variable
Comments
# This is a comment
TEST="hello" # This is also a comment
Multiline Values
KEY="---- BEGIN MY KEY ----
...
hello
...
---- END MY KEY ----"
Parsing
const env = require('rapidenv')();
console.log(env.parseVariables()) // { TEST: 'hello' }
Custom .env Path
const env = require('rapidenv')("./src/.env" /* Path to .env file */);
env.load();