forked from anihalaney/rwa-trivia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.ts
69 lines (53 loc) · 1.67 KB
/
server.ts
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// These are important and needed before anything else
import 'zone.js/dist/zone-node';
import 'reflect-metadata';
import { enableProdMode } from '@angular/core';
import { ngExpressEngine } from '@nguniversal/express-engine';
import { provideModuleMap } from '@nguniversal/module-map-ngfactory-loader';
import { resolve } from 'path';
import * as express from 'express';
const domino = require('domino');
const compression = require('compression');
const win = domino.createWindow('');
const app = express();
const path = require('path');
let index;
global['window'] = win;
global['document'] = win.document;
global['XMLHttpRequest'] = require('xmlhttprequest').XMLHttpRequest;
// console.log(process.cwd());
const DIST_FOLDER = resolve(process.cwd(), './dist');
// console.log(DIST_FOLDER);
const {
AppServerModuleNgFactory,
LAZY_MODULE_MAP
} = require(`./functions/dist/server/main`);
enableProdMode();
// Set the engine
app.engine(
'html',
ngExpressEngine({
bootstrap: AppServerModuleNgFactory,
providers: [provideModuleMap(LAZY_MODULE_MAP)]
})
);
app.set('view engine', 'html');
app.set('views', DIST_FOLDER);
app.use(compression());
// Point all routes to Universal
app.get('*', (req, res) => {
// console.log('ssr url---->', req.url);
res.setHeader('Cache-Control', 'public, max-age=21600, s-maxage=21600');
if (req.url.includes('index.html')) {
index = (!index) ? require('fs')
.readFileSync(resolve(process.cwd(), './dist/index.html'), 'utf8')
.toString() : index;
// console.log('cached html---->', index);
res.send(index);
} else {
res.render('index', { req }, (err, html) => {
res.send(html);
});
}
});
exports.app = app;