-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
38 lines (32 loc) · 970 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
37
38
import config from './config';
import apiRouter from './api';
import sassMiddleware from 'node-sass-middleware';
import path from 'path';
import serverRender from './serverRender';
import express from 'express';
import bodyParser from 'body-parser';
const server = express();
server.use(bodyParser.json());
server.use(sassMiddleware({
src: path.join(__dirname, 'sass'),
dest: path.join(__dirname, 'public')
}));
server.set('view engine', 'ejs');
server.get(['/', '/contest/:contestId'], (req, res) => {
serverRender(req.params.contestId)
.then(({ initialMarkup, initialData }) => {
res.render('index', {
initialMarkup,
initialData
});
})
.catch(error => {
console.error(error);
res.status(404).send('Bad Request');
});
});
server.use('/api', apiRouter);
server.use(express.static('public'));
server.listen(config.port, config.host, () => {
console.info('Express listening on port', config.port);
});