05_03.网站人口

//引入express文件
const express = require("express");

const outrouter = require("./03外置路由.js");

//创建服务器
var app = express();

// outrouter(app);
//使用外置路由需要使用use方法
app.use(outrouter);

//开启监听
app.listen(3000,function(){
    console.log("running");
});

你可能感兴趣的:(05_03.网站人口)