-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
36 lines (33 loc) · 908 Bytes
/
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
/*
* @Author: starkwang
* @Contact me: https://shudong.wang/about
* @Date: 2019-11-21 15:25:24
* @LastEditors: starkwang
* @LastEditTime: 2019-11-27 18:30:56
* @Description: file content
*/
const Koa = require('koa');
const next = require('next');
// const proxyMiddleware = require('http-proxy-middleware');
// const c2k = require('koa2-connect');
const Sentry = require('@sentry/node');
const dev = process.env.NODE_ENV === 'development';
const app = next({ dev });
const router = require('./node/routes')(app);
const server = new Koa();
// const handler = routes.getRequestHandler(app);
// process.exit(1)
const port = 3200;
Sentry.init({
dsn: ''
});
app.prepare().then(() => {
server.use(async (ctx, nxt) => {
ctx.res.statusCode = 200;
await nxt();
});
server.use(router.routes());
server.listen(port, () => {
console.log(`> Ready on http://localhost:${port}`);
});
});