Node peluncuran windows dengan variabel

#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
eiymba