node install dotenv code example

Example 1: dotenv python

# Install dotenv via:
pip3 install python-dotenv

# Load .env file using:
from dotenv import load_dotenv
load_dotenv()

# Use the variable with:
import os
os.getenv("ACCESS_KEY")

Example 2: install dotenv

# For python users only
pip install python-dotenv

Example 3: node dotenv

require('dotenv').config();

console.log(process.env.MY_ENV_VAR);

Example 4: how to install dotenv

# with npm 
npm install dotenv
 
# or with Yarn 
yarn add dotenv