青衣 发表于 2021-7-11 10:36:18

express托管静态文件





app.js文件内容const express = require('express')
const app = express()

// 服务端口号
const port = 3000
// 利用 Express 托管静态文件
app.use(express.static('public'))

app.listen(port, () => {
    console.log(`Example app listening at http://localhost:${port}`)
})
在文件夹中创建 index.html  内容如下:<h1>你好</h1>


  
文档来源:51CTO技术博客https://blog.51cto.com/u_11641800/3034022
页: [1]
查看完整版本: express托管静态文件