📌  相关文章
📜  带有变量的 windows 启动节点 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:45.182000             🧑  作者: Mango

代码示例1
#Powershell
$env:NODE_ENV="production"; node .\index.js

#or with NPM

$env:NODE_ENV="production"; npm start

#CMD
set NODE_ENV=production && node .\index.js

#or with NPM
setn NODE_ENV=production && npm start