-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
38 lines (31 loc) · 868 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 express from 'express';
import sassMiddleware from 'node-sass-middleware';
import path from 'path';
const server = express();
server.use(sassMiddleware({
/* Options */
src: path.join(__dirname, 'sass'),
dest: path.join(__dirname, 'public'),
debug: 'true',
outputStyle: 'compressed',
prefix: '/static/'
}));
server.set('view engine', 'ejs');
import serverRender from './serverRender';
server.get('/', (req, res) => {
serverRender()
.then(({ initialMarkup, initialData }) => {
res.render('index', {
initialMarkup,
initialData
});
})
.catch(console.error);
});
server.use('/api', apiRouter);
server.use(express.static('public'));
server.listen(config.port, config.host, () => {
console.info('Express listening on port', config.port);
});