简体   繁体   中英

NodeJS not recognizing .env file

I have like 5 NodeJS services running, but I have a problem in one of those.

This is the nodemon.json file:

{
  "watch": ["**/*.ts"],
  "ext": "ts,json",
  "ignore": ["./test/*.ts"],
  "exec": "node -r ts-node/register -r dotenv/config Index.ts dotenv_config_path=$(pwd)/.env",
  "env": {
    "NODE_ENV": "development"
  }
}

It's the same as the rest of services. When I run npm run dev I got error messages depending on which value is taking from the.env file, example:

const LOCAL_CONFIGURATION = {
    PORT_APP: 8082,
    MONGODB: {
        SERVER: process.env.MONGO_DTE,
        AUTH: {
            auth: {
                password:process.env.MONGO_PASSWORD,
                user:process.env.MONGO_USER
            }
        },
    },
    MS_NOTIFICACION: "http://localhost:8089/notificacion",
    ELASTIC_PATH: process.env.ELASTIC_PATH,
    ...COMMON,
};

The first error message is: ConfigurationError: Missing node(s) option That message is produced because it's not reading the value from process.env.ELASTIC_PATH , but if I put a hardcoed value like " http://with.the.correct.url " and it tries again to run, I get another error:

Error: Credentials must be provided when creating a service client That error is because it's trying to read password:process.env.MONGO_PASSWORD and user:process.env.MONGO_USER

etc, so, there's a problem on reading the .env file. I know that .env file has those values, and the file is in UTF-8, without quotes, etc. The .env file is the same file as the other services, it works ok in the rest but I don't know why is not getting read here.

Any idea?

EDIT:

在此处输入图像描述

Plus, I put a console.log(process.env); in config.ts file and it shows values like this:

在此处输入图像描述

But there's no values from the .env for example, there in the picture there's a value called COMPUTERNAME so if I put console.log(process.env.COMPUTERNAME); I get: IBM-NOT87

Why is not getting the.env file?

Seems like you need to require/configure dotenv . Docs :

As early as possible in your application, require and configure dotenv.

require('dotenv').config()

require('dotenv').config({ path: "./sample.env" });

In the file you are using environment variables, As early as possible, require the "dotenv" and in the config() method, specify the path of the .env file, even if it in your root directory or the same directory where node starts.

The code for requiring and specifying file in the same directory is in the first line in the answer.

Also, for further reading, you can visit https://github.com/motdotla/dotenv#path

To further expand on @JBallin answer

you should use this on your app.js

  • Or if that does not work then you will need to explicitly add it to the file you are wanting to use those Variables

Sharing image, as its sometimes easier to see expanded在此处输入图像描述

code here =>

require('dotenv/config') // require the dotenv/config at beginning of file
const express = require('express')
const mongoose = require('mongoose')

You cat try this.

-> npm i dotenv

and in code add this piece of code

require('dotenv').config({
    path: 'your path here'
})

Install dotenv package

npm install --s dotenv

And add this require("dotenv").config(); in index.js/ts file.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM