-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
72 lines (59 loc) · 1.77 KB
/
app.js
File metadata and controls
72 lines (59 loc) · 1.77 KB
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
const Koa = require('koa');
const app = new Koa();
const router = require('koa-router')();
const views = require('koa-views');
const co = require('co');
const convert = require('koa-convert');
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 admin = require('./routes/admin');
const book = require('./routes/book');
const card = require('./routes/card');
const cors = require('koa-cors');
import session from "koa2-cookie-session";
// middlewares
app.use(convert(bodyparser));
app.use(convert(json()));
app.use(convert(logger()));
app.use(convert(require('koa-static')(__dirname + '/public')));
/*
app.use(views(__dirname + '/views', {
extension: 'jade'
}));
*/
app.use(views(__dirname + '/views-ejs', {
extension: 'ejs'
}));
app.use(cors());
app.use(session({
key: "koa:sid", //default "koa:sid"
path:"/" //default "/"
}));
console.log('[INFO] Session ready.');
// 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`);
});
// TODO Extremely important!!!!!
app.use(async (ctx, next) => {
await next();
ctx.append('Access-Control-Allow-Credentials', true);
})
router.use('/', index.routes(), index.allowedMethods());
router.use('/admin', admin.routes(), admin.allowedMethods());
router.use('/book', book.routes(), book.allowedMethods());
router.use('/card', card.routes(), card.allowedMethods());
app.use(router.routes(), router.allowedMethods());
// response
console.log('[INFO] Server ready.');
app.on('error', function(err, ctx){
console.log(err)
log.error('server error', err, ctx);
});
module.exports = app;