取消网站备案号,立陶宛和中国最新消息,视觉设计图,网站cms系统源码const express require(express);const app express();
//创建路由对象
const home express.Router();
app.use(/home, home);
home.get(/index, (req, res) {res.send(欢迎来到我的页面)
})
app.listen(3000);
console.log(服务器启动成功);
运行结果
const express require(express);const app express();
//创建路由对象
const home express.Router();
app.use(/home, home);
home.get(/index, (req, res) {res.send(欢迎来到我的页面)
})
app.listen(3000);
console.log(服务器启动成功);
运行结果