-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
79 lines (66 loc) · 1.79 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const Koa = require('koa')
const cors = require('@koa/cors');
const app = new Koa()
app.use(cors());
const views = require('koa-views')
const json = require('koa-json')
const onerror = require('koa-onerror')
const bodyparser = require('koa-bodyparser')
const logger = require('koa-logger')
const index = require('./routes/index')
const category = require('./routes/api/category')
const repository = require('./routes/api/repository')
const user = require('./routes/api/user')
const remark = require('./routes/api/remark')
// error handler
onerror(app)
// middlewares
app.use(bodyparser({
enableTypes:['json', 'form', 'text'],
'formLimit':'50mb',
'jsonLimit':'50mb',
'textLimit':'50mb',
queryString: {
arrayLimit: 10000,
depth: 50,
parameterLimit: 10000,
}
}))
app.use(json())
app.use(logger())
app.use(require('koa-static')(__dirname + '/public'))
app.use(views(__dirname + '/views', {
extension: 'ejs'
}))
// logger
app.use(async (ctx, next) => {
const start = new Date()
await next()
const ms = new Date() - start
console.log(`${ctx.method} ${ctx.url} - ${ms}ms`)
})
// routes
app.use(index.routes(), index.allowedMethods())
app.use(repository.routes(), repository.allowedMethods())
app.use(category.routes(), category.allowedMethods())
app.use(user.routes(), user.allowedMethods())
app.use(remark.routes(), remark.allowedMethods())
// error-handling
app.on('error', (err, ctx) => {
console.log('!!!!!!!!!!!!!!!!!!!!!!!')
console.error('server error', err, ctx)
});
// demos/16.js
const handler = async (ctx, next) => {
try {
await next();
} catch (err) {
console.log('捕捉到错误啦!!!!')
ctx.response.status = err.statusCode || err.status || 500;
ctx.response.body = {
message: err.message
};
}
};
app.use(handler);
module.exports = app