📅  最后修改于: 2022-03-11 14:50:45.182000             🧑  作者: Mango
#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