1 Star 0 Fork 0

Nathan/node-serve

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 375 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nathan 提交于 2024-08-21 22:28 . +
const express = require('express')
const app = express()
const userRoutes = require('./user/index');
app.use(express.json());
// 设置静态文件夹,使得客户端可以通过 URL 访问图片
app.use('/images', express.static('uploads'));
// 挂载用户路由
app.use(userRoutes);
app.listen('3000', '0.0.0.0', () => {
console.log('Serve run at 3000')
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/nathan2022/node-serve.git
git@gitee.com:nathan2022/node-serve.git
nathan2022
node-serve
node-serve
master

搜索帮助