0
Q:

nodejs dotenv path how to set

require('dotenv').config();

console.log(process.env.MY_ENV_VAR);
2
// when yours .env is in other place then default, you can set path to it

const path = require('path')
require('dotenv').config({ path: path.resolve(__dirname, '../../.env') }); //use as many '../' as you need
0
npm install dotenv
1

New to Communities?

Join the community