aboutsummaryrefslogtreecommitdiff
path: root/vnext/server/index.js
blob: 278a4f4a6739afe9d76303691aa64b37d5756fcf (plain) (blame)
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 express from 'express';

// we'll talk about this in a minute:
import serverRenderer from './middleware/renderer';
import event from './middleware/event';
import oembed from './middleware/oembed';
import urlExpand from './middleware/urlexpand';

const PORT = 3000;
const path = require('path');

// initialize the application and create the routes
const app = express();
const router = express.Router();

router.use('/api/sender', event);
router.use('/api/oembed', oembed);
router.use('/api/urlexpand', urlExpand);
router.use('^/$', serverRenderer);

// other static resources should just be served as they are
router.use(express.static(
    path.resolve(__dirname, '..', 'dist'),
    { maxAge: '30d' },
));

router.use('*', serverRenderer);

app.use(router);

// start the app
app.listen(PORT, (error) => {
    if (error) {
        return console.log('something bad happened', error);
    }

    console.log('listening on ' + PORT + '...');
});