Answers for "Cannot find module 'dotenv/config'"

1

cannot find module dotenv

There are so many repairs:

npm install dotenv
npm install --dotenv-extended

This worked for me ↓:
npm install dotenv @latest

*****

And the file must require 'dotenv' like this

require('dotenv').config()
console.log(process.env.YOURENVVARIABLE)
Posted by: Guest on July-30-2021
8

node dotenv

require('dotenv').config();

console.log(process.env.MY_ENV_VAR);
Posted by: Guest on October-07-2020
22

dotenv

$ npm install dotenv

//--------------------

on file .env 
//--------------------
DB_HOST=localhost
DB_USER=root
DB_PASS=s1mpl3
DB_NAME=banco_de_dados
DB_PORT=3306
//--------------------

import the config from .env file 
//--------------------

require('dotenv').config()
module.exports = {
    username:process.env.DB_USER,
    password:process.env.DB_PASS,
    database:process.env.DB_NAME,
    host:process.env.DB_HOST,
    dialect:"mysql"
}
Posted by: Guest on May-21-2020

Code answers related to "Cannot find module 'dotenv/config'"

Browse Popular Code Answers by Language