Answers for "dotenv package"

3

install dotenv

# For python users only
pip install python-dotenv
Posted by: Guest on December-20-2020
4

dotenv npm

//In CMD
npm i dotenv


//in JS file 
require('dotenv').config();
Posted by: Guest on March-01-2021
8

node dotenv

require('dotenv').config();

console.log(process.env.MY_ENV_VAR);
Posted by: Guest on October-07-2020

Browse Popular Code Answers by Language