forked from angular/universal-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserver.ts
139 lines (112 loc) · 4.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import 'zone.js/dist/zone-node';
import 'reflect-metadata';
import {enableProdMode} from '@angular/core';
// Express Engine
import {ngExpressEngine} from '@nguniversal/express-engine';
// Import module map for lazy loading
import {provideModuleMap} from '@nguniversal/module-map-ngfactory-loader';
import * as express from 'express';
import {join} from 'path';
// Faster server renders w/ Prod mode (dev mode never needed)
enableProdMode();
const DIST_FOLDER = join(process.cwd(), 'dist');
const servers = [
{
name: 'site1',
server: express(),
port: 4000,
supportedLocales: ['it', 'en', 'fr'],
folder: join(DIST_FOLDER, 'site1')
},
{
name: 'site2',
server: express(),
port: 4001,
supportedLocales: ['it', 'en', 'es'],
folder: join(DIST_FOLDER, 'site2')
}
];
// ----------------------------------
// Express server
// const app = express();
// const PORT = process.env.PORT || 4000;
// * NOTE :: leave this as require() since this file is built Dynamically from webpack
const {AppServerModuleNgFactory, LAZY_MODULE_MAP} = require('./server/main');
// Our Universal express-engine (found @ https://github.com/angular/universal/tree/master/modules/express-engine)
// app.engine('html', ngExpressEngine({
// bootstrap: AppServerModuleNgFactory,
// providers: [
// provideModuleMap(LAZY_MODULE_MAP),
// ]
// }));
//
// app.set('view engine', 'html');
// app.set('views', join(DIST_FOLDER, 'site1'));
// Server static files from /browser
// app.get('*.*', express.static(join(DIST_FOLDER, 'site1'), {
// maxAge: '1y'
// }));
// All regular routes use the Universal engine
// app.get('*', (req, res) => {
// // this is for i18n
// const supportedLocales = ['it', 'en', 'es', 'fr'];
// const defaultLocale = 'en';
// const matches = req.url.match(/^\/([a-z]{2}(?:-[A-Z]{2})?)\//);
//
// // check if the requested url has a correct format '/locale' and matches any of the supportedLocales
// const locale = (matches && supportedLocales.indexOf(matches[1]) !== -1) ? matches[1] : defaultLocale;
//
//
// let ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
// if (ip.substr(0, 7) === '::ffff:') {
// ip = ip.substr(7);
// }
//
// res.render(`${locale}/index`, {
// req,
// providers: [
// {provide: 'language', useFactory: () => locale, deps: []},
// {provide: 'ip', useFactory: () => ip, deps: []}
// ]
// });
// });
// Start up the Node server
// app.listen(PORT, () => {
// console.log(`Node Express server listening on http://localhost:${PORT}`);
// });
// ----------------------------------
servers.map(app => {
// Our Universal express-engine (found @ https://github.com/angular/universal/tree/master/modules/express-engine)
app.server.engine('html', ngExpressEngine({
bootstrap: AppServerModuleNgFactory,
providers: [
provideModuleMap(LAZY_MODULE_MAP),
]
}));
app.server.set('view engine', 'html');
app.server.set('views', app.folder);
// Server static files from
app.server.get('*.*', express.static(app.folder, {maxAge: '1y'}));
app.server.get('*', (req, res) => {
// this is for i18n
const defaultLocale = 'en';
const matches = req.url.match(/^\/([a-z]{2}(?:-[A-Z]{2})?)\//);
// check if the requested url has a correct format '/locale' and matches any of the supportedLocales
const locale = (matches && app.supportedLocales.indexOf(matches[1]) !== -1) ? matches[1] : defaultLocale;
let ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
if (ip.substr(0, 7) === '::ffff:') {
ip = ip.substr(7);
}
res.render(`${locale}/index`, {
req,
providers: [
{provide: 'language', useFactory: () => locale, deps: []},
{provide: 'ip', useFactory: () => ip, deps: []}
]
});
});
// Start up the Node server
app.server.listen(app.port, () => {
console.log(`Node Express server for ${app.name} listening on http://localhost:${app.port}`);
});
});