how to use dotenv package code example
Example 1: dotenv npm
//In CMD
npm i dotenv
//in JS file
require('dotenv').config();
Example 2: install dotenv node js
npm install dotenv --save
//In CMD
npm i dotenv
//in JS file
require('dotenv').config();
npm install dotenv --save