本文介绍了如何将 nodemon 与 .env 文件一起使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 .env 文件来保存服务器的环境变量.如果我使用 foreman start 运行服务器,这会起作用.但它不适用于 nodemon.
I am using an .env file to hold environment variables for the server. This works if I run the server with foreman start. But it doesn't work with nodemon.
我想改用 nodemon,因为它会在您修改服务器时自动重新启动.如何让 nodemon 使用 .env 文件?
I would like to use nodemon instead because it restarts automatically when you modify the server. How can I get nodemon to work with .env files?
推荐答案
- 安装dotenv
npm i dotenv
- 创建
.env
文件和你的变量 添加要执行的脚本
- Install dotenv
npm i dotenv
- Create
.env
file and your variables inside Add the script to execute
"dev": "nodemon -r dotenv/config ./app/index.js " or
"start": "node -r dotenv/config ./app/index.js "
使用 npm run dev
或 npm run start
这篇关于如何将 nodemon 与 .env 文件一起使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!