-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
40 lines (33 loc) · 855 Bytes
/
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
import Koa from 'koa'
import json from 'koa-json'
import onerror from 'koa-onerror'
import bodyparser from 'koa-bodyparser'
import path from 'path'
import logUtil from './utils/log'
import responseFormatter from './middleware/responseFormatter'
import setRoutes from './routes'
const app = new Koa()
// error handler
onerror(app)
app.use(responseFormatter)
// middlewares
app.use(bodyparser({
enableTypes: ['json', 'form', 'text']
}))
app.use(json())
app.use(require('koa-static')(path.join(__dirname, 'public')))
// 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`)
logUtil.logResponse(ctx, ms)
})
// routes
setRoutes(app)
// error-handling
app.on('error', (err, ctx) => {
logUtil.logError(ctx, err)
})
module.exports = app