-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
38 lines (29 loc) · 848 Bytes
/
server.js
File metadata and controls
38 lines (29 loc) · 848 Bytes
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
const express = require('express');
const next = require('next');
// Import middleware.
const routes = require('./routes');
// Setup app.
const app = next({ dev: 'production' !== process.env.NODE_ENV });
const handle = app.getRequestHandler();
const handler = routes.getRequestHandler(app);
app.prepare()
.then(() => {
// Create server.
const server = express();
// Use our handler for requests.
server.use(handler);
// Don't remove. Important for the server to work. Default route.
server.get('*', (req, res) => {
return handle(req, res);
});
// Get current port.
const port = process.env.PORT || 8080;
// Error check.
server.listen(port, err => {
if (err) {
throw err;
}
// Where we starting, yo!
console.log(`> Ready on port ${port}...`);
});
});