1.开启一个本地的端口服务 这里使用express做测试
2.选择一个过渡的映射软件
const express = require('express');
const app = express();
const port = 3000;
// 定义路由
app.get('/', (req, res) => {
res.send('Hello, Express!!!!!!!!!!!!!!!!!!!!!!!!!');
});
// 启动服务器
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});
https://www.shenzhuohl.com/chuantou.html