@anzerr/dotenv
v1.0.2
Published
util to load env values into an app/service
Readme
Intro
dotenv loads a formated .env file into process.env
Install
npm install --save git+https://[email protected]/anzerr/dotenv.git
npm install --save @anzerr/dotenvExample
.env files
APP_PORT=3005require('@anzerr/dotenv').config();
console.log(process.env.APP_PORT); // 3005