-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.js
executable file
·50 lines (38 loc) · 1.05 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
require('app-module-path').addPath(__dirname + '/');
const Koa = require('koa')
const app = new Koa()
const cors = require('kcors')
const convert = require('koa-convert')
const bodyparser = require('koa-bodyparser')()
const logger = require('koa-logger')
const mongodb = require('db/mongodb')
const mongoosePaginate = require('mongoose-paginate')
const redis = require('db/redis')
const config = require('config/env')[process.env.NODE_ENV || 'development']
const middleware = require('middlewares')
const router = require('./routes')
// data server
mongodb.connect()
redis.connect()
// global options
mongoosePaginate.paginate.options = {
limit: config.APP.LIMIT
}
app.proxy = true
app.use(cors({
credentials: true
}))
// middleware
app.use(convert(logger()))
.use(bodyparser)
// 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`)
})
// router
app.use(middleware.errorHandler)
app.use(router.routes(), router.allowedMethods())
module.exports = app