style-npm
v1.0.0
Published
```js 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(r
Downloads
3
Readme
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("你好么?"))