“Cómo usar Dotenv en JavaScript” Código de respuesta

Cómo usar Dotenv en JavaScript

#in you cmd type this command

npm i dotenv

#and then require it in you javascript using :
require("dotenv").config()
ParthRangarajan

.env

npm install dotenv
Evil Earthworm

¿Qué es dotenv en nodejs?

this module is used to access environment variable in our application
drpzet

Dotenv en el nodo JS

This is used to add a specific path to locate the .env file if we use like this 
.config() then this is finding .env file in our cwd - current working directory.


require('dotenv').config({ path: '/custom/path/to/.env' })
Coding is fun

Respuestas similares a “Cómo usar Dotenv en JavaScript”

Preguntas similares a “Cómo usar Dotenv en JavaScript”

Más respuestas relacionadas con “Cómo usar Dotenv en JavaScript” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código