1 Star 0 Fork 0

Quarkzhong/easyapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 2.15 KB
一键复制 编辑 原始数据 按行查看 历史
Quarkzhong 提交于 2024-12-23 14:42 . feat:
//引入定时任务文件
require('./schedule.js')
const express = require('express')
const path = require('path')
const app = express()
const cors = require('cors')
const bodyParser = require('body-parser')
app.use(bodyParser.json({ limit: '5000mb' }));
app.use(bodyParser.urlencoded({ limit: '5000mb', extended: true }));
app.use(cors())
app.use(express.json())
// 配置跨域请求中间件(服务端允许跨域请求)
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*') // 设置允许来自哪里的跨域请求访问(值为*代表允许任何跨域请求,但是没有安全保证)
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS') // 设置允许接收的请求类型
res.header('Access-Control-Allow-Headers', 'Content-Type,request-origin') // 设置请求头中允许携带的参数
res.header('Content-Type', 'application/json;charset=utf-8')
res.header('Access-control-max-age', 1000) // 设置请求通过预检后多少时间内不再检验,减少预请求发送次数
next()
})
// app.use(express.static(path.join(__dirname, '')))
// 其他引入和配置...
const indexRoutes = require('./router/index.js')
const userRoutes = require('./router/user.js')
const pushRoutes = require('./router/push.js')
const adminRoutes = require('./router/admin.js')
const demotest = require('./router/demotest.js')
const yellow = require('./router/yellow.js')
const os = require('./router/os.js')
// const web = require('./router/web.js')
const Xenova = require('./router/Xenova.js')
// 其他中间件和路由...
app.use('/', indexRoutes)
app.use('/user', userRoutes)
app.use('/push', pushRoutes)
app.use('/admin', adminRoutes)
app.use('/api', demotest)
app.use('/se', yellow)
app.use('/os', os)
// app.use('/web', web)
app.use('/Xenova', Xenova)
// app.get('*', (req, res) => {
// //返回一个iframe页面,src为http://localhost:12345/se
// res.header('Content-Type', 'text/html;charset=utf-8')
// res.send(`
// <iframe src="http://up.quarkzhong.top/404" style="width:100%;height:100%;border:none;"></iframe>
// `)
// })
// 启动服务器
app.listen(12345, () => {
console.log('http://localhost:12345')
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Quarkzhong/easyapi.git
git@gitee.com:Quarkzhong/easyapi.git
Quarkzhong
easyapi
easyapi
master

搜索帮助