1 Star 0 Fork 0

DonV/mirror-repo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 653 Bytes
一键复制 编辑 原始数据 按行查看 历史
DonV 提交于 2022-03-09 15:24 . feat: init repo
const express = require('express')
const handler = require('./webhook-handler')
const { SUCCESS_CODE, ERRRO_CODE } = require('./const')
const app = express()
const port = 9000
app.use(express.json())
app.post('/mirror', (req, res, next) => {
handler(req, res, err => {
if (err) {
next(err)
} else {
res.json({
code: SUCCESS_CODE,
msg: 'success',
content: null,
})
}
})
})
app.use((err, req, res, next) => {
res.status(500).json({
code: ERRRO_CODE,
msg: 'fail',
content: err.message,
})
})
app.listen(port, () => {
console.log(`Server start on http://localhost:${port}`)
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dongwei1125/mirror-repo.git
git@gitee.com:dongwei1125/mirror-repo.git
dongwei1125
mirror-repo
mirror-repo
master

搜索帮助