0

这是我的Node.js代码:

// Using ES6 syntax is fine because we already have Babel to transpile code.
import express from 'express';
// Create an Express application.
const app = express();
// Define port number for the server.
const PORT = 400;
// When visitors make a GET request to address "/", specify the response.
app.get('/', (req, res) =>
    res.send(`Node and Express server running on port ${PORT}`)
);
// Send message to the console to confirm that the server is running on the specified port.
app.listen(PORT, () => 
    console.log(`Server running on port ${PORT}`)
);

当我使用$ npm start时,我得到这个:

> smr@1.0.0 start /Users/jaimemontoya/Desktop/SMR
> nodemon ./index.js --exec babel-node -e js

[nodemon] 2.0.2
[nodemon] to restart at any time, enter `rs`
[nodemon] watching dir(s): *.*
[nodemon] watching extensions: js
[nodemon] starting `babel-node ./index.js`
Server running on port 400

但是,当我从 Web 浏览器访问http://localhost:4000/时,我看到:

This site can’t be reached
localhost refused to connect.
Try:
Checking the connection
Checking the proxy and the firewall
ERR_CONNECTION_REFUSED

在此处输入图像描述

有什么想法可以通过网络浏览器完成这项工作吗?

更新 1:

我的意思是http://localhost:400

4

1 回答 1

0

我猜 PORT 400 对我不可用。我使用过const PORT = 406;,现在当我访问http://localhost:406/时,它可以工作,我收到以下消息:

在端口 406 上运行的节点和 Express 服务器

于 2020-03-14T01:21:21.143 回答