1.0.0 • Published 3 years ago

style-npm v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

const express = require("express");//引入
const app = express();//
// app.use((req,res,next) => {
//   if(req.path === "/"){
//       res.end("1233156464")
//   }else{
//       next();
//   }
// })
// app.use((req,res,next) => {
//     if(req.path === "/api/list"){
//         res.end("鲁班大师智障250")
//     }else{
//         next();
//     }
// })
app.use(express.static('public'))

app.listen(8080, () => console.log("你好么?"))