一尘不染

如何在node.js中更改process.env.PORT的值?

node.js

我想更改的值process.env.PORT,我该怎么做?

我正在运行Ubuntu 12.04。


阅读 533

收藏
2020-07-07

共1个答案

一尘不染

仅运行一次(从unix shell提示符):

$ PORT=1234 node app.js

更永久地:

$ export PORT=1234
$ node app.js

Windows中

set PORT=1234

在Windows PowerShell中

$env:PORT = 1234
2020-07-07