装置 express 框架
npm i express -S
新建 server.js 文件
var express = require("express");
var app = express();
// 动态文件
app.use(express.static('public'))
// app.get 能够新建多个,如:/two、/three... 等多个页面
app.get('/',(req,res) => {res.sendFile(__dirname+"/"+"index.html")
});
// 设置端口 3000 拜访地址,即 http://localhost:3000
var server = app.listen(3000, ()=>{var port = server.address().port
console.log("拜访地址 http://localhost://", port)
})
运行
node server.js
拜访地址为:http://localhost:3000