1 Star 0 Fork 23

simz/express-template

forked from 北瑶/express-template 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 377 Bytes
一键复制 编辑 原始数据 按行查看 历史
北瑶 提交于 2022-11-26 13:02 . update app.js.
const express = require('express')
// 加一个注释,用以说明,本项目代码可以任意定制更改
const app = express()
const PORT = process.env.PORT || 3000
// 挂载路由
app.use('/api', router)
// 挂载统一处理服务端错误中间件
app.use(errorHandler())
app.listen(PORT, () => {
console.log(`Server is running at http://localhost:${PORT}`)
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/simSpace/express-template.git
git@gitee.com:simSpace/express-template.git
simSpace
express-template
express-template
master

搜索帮助