我想更改的值process.env.PORT,我该怎么做?
process.env.PORT
我正在运行Ubuntu 12.04。
仅运行一次(从unix shell提示符):
$ PORT=1234 node app.js
更永久地:
$ export PORT=1234 $ node app.js
在Windows中:
set PORT=1234
在Windows PowerShell中:
$env:PORT = 1234