-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
50 lines (40 loc) · 1.08 KB
/
server.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('isomorphic-fetch')
// import npm dependencies
const bodyParser = require('koa-bodyparser')
const dotenv = require('dotenv')
const Koa = require('koa')
const logger = require('koa-logger')
const Router = require('koa-router')
dotenv.config()
const port = parseInt(process.env.PORT, 10) || 3001
// initialize app
const app = new Koa()
// add logging
app.use(logger())
app.use(bodyParser())
// add error handling
app.use(async (ctx, next) => {
try {
await next()
} catch (err) {
ctx.status = err.status || 500
ctx.body = err.message
ctx.app.emit('error', err, ctx)
}
})
// add auth router
const authRouter = new Router({ prefix: '/auth' })
require('./routes/auth')({ authRouter })
app.use(authRouter.routes())
app.use(authRouter.allowedMethods())
// add api router
const apiRouter = new Router({ prefix: '/api' })
require('./routes/api')({ apiRouter })
app.use(apiRouter.routes())
app.use(apiRouter.allowedMethods())
// start server
const server = app.listen(port, () => {
console.log(`> Ready on http://localhost:${port}`)
})
// export server
module.exports = server