- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
Latest commit
55 lines (45 loc) · 1.27 KB
/
Copy pathapp.js
File metadata and controls
55 lines (45 loc) · 1.27 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
constKoa=require('koa')
constapp=newKoa()
app.listen(3826);
// const views = require('koa-views')
constjson=require('koa-json')
constonerror=require('koa-onerror')
constbodyparser=require('koa-bodyparser')
constlogger=require('koa-logger')
// const index = require('./routes/index')
// const users = require('./routes/users')
varpgclient=require('./config/conn.js');
pgclient.getConnection();
// 调用上述四个函数即可
pgclient.save('userinfo',{'name': 'admin'},cb);
// pgclient.select('userinfo', { 'name': 'admin' }, [], cb);
functioncb(res){
console.log(res);
}
// error handler
onerror(app)
// middlewares
app.use(bodyparser({
enableTypes: ['json','form','text']
}))
app.use(json())
app.use(logger())
// app.use(require('koa-static')(__dirname + '/public'))
// app.use(views(__dirname + '/views', {
// extension: 'html'
// }))
// logger
app.use(async(ctx,next)=>{
conststart=newDate()
awaitnext()
constms=newDate()-start
console.log(`${ctx.method}${ctx.url} - ${ms}ms`)
})
// routes
// app.use(index.routes(), index.allowedMethods())
// app.use(users.routes(), users.allowedMethods())
// error-handling
app.on('error',(err,ctx)=>{
console.error('server error',err,ctx)
});
module.exports=app