how to load .env file in nodejs code example
Example 1: install dotenv
# For python users only
pip install python-dotenv
Example 2: node dotenv
require('dotenv').config();
console.log(process.env.MY_ENV_VAR);
# For python users only
pip install python-dotenv
require('dotenv').config();
console.log(process.env.MY_ENV_VAR);