webfast 0.1.63 → 0.1.65
Sign up to get free protection for your applications and to get access to all the features.
- package/modules/express/init.js +1 -1
- package/package.json +1 -1
package/modules/express/init.js
CHANGED
@@ -10,7 +10,7 @@ module.exports = async function (program) {
|
|
10
10
|
const bodyParser = require('body-parser');
|
11
11
|
const WebSocket = require('ws');
|
12
12
|
const crypto = require(`crypto`)
|
13
|
-
const port =
|
13
|
+
const port = process.env.port;
|
14
14
|
const basePath = `/api`;
|
15
15
|
|
16
16
|
const app = express();
|