Answers for "how to install dotenv npm package"

4

dotenv npm

//In CMD
npm i dotenv


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

how to install dotenv

# with npm 
npm install dotenv
 
# or with Yarn 
yarn add dotenv
Posted by: Guest on March-09-2021

Browse Popular Code Answers by Language