如何在 Shell 中为 node.js 设置环境
how to set env in Sheel for node.js
shell:$ set CONF = 44
const mytext = process.env.CONF console.log(mytext);
//未定义
在 Powershell 中,
$Env:CONF = 'Hello, World!'
npm install dotenv --save
在您的项目根目录中添加 .env 文件。
确保您的 .env 文件中包含以下内容
CONF=SOME_DATA
在你的 js 文件中添加这个
require('dotenv').config()
console.log(process.env.CONF) // remove this after you've confirmed it working
shell:$ set CONF = 44
const mytext = process.env.CONF console.log(mytext);
//未定义
在 Powershell 中,
$Env:CONF = 'Hello, World!'
npm install dotenv --save
在您的项目根目录中添加 .env 文件。 确保您的 .env 文件中包含以下内容
CONF=SOME_DATA
在你的 js 文件中添加这个
require('dotenv').config()
console.log(process.env.CONF) // remove this after you've confirmed it working