1 Star 1 Fork 0

slx/swift-back

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 937 Bytes
一键复制 编辑 原始数据 按行查看 历史
// 导入express框架
const express = require("express");
// 创建express实例
const app = express();
// 导入body-parser
var bodyParser = require("body-parser");
var helmet = require("helmet");
app.use(helmet());
// 导入cors
const cors = require("cors");
// 全局挂载
app.use(cors());
app.use(
bodyParser.urlencoded({
extended: false,
})
);
// parse application/json
app.use(bodyParser.json());
//挂载路由--请求信息用于开始的操作
const folderControllers = require("./controllers/folderControllers");
app.use("/file", folderControllers);
const containersControllers = require("./controllers/containerControllers");
app.use("/containers", containersControllers);
const repeaterImgControllers = require("./controllers/repeaterImgControllers.js");
app.use("/repeater", repeaterImgControllers);
app.listen(3007, () => {
console.log("http://127.0.0.1:3007");
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/starrylsi/swift-back.git
git@gitee.com:starrylsi/swift-back.git
starrylsi
swift-back
swift-back
main

搜索帮助