-
Notifications
You must be signed in to change notification settings - Fork 9
/
server.ts
53 lines (40 loc) · 1.34 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
// These are important and needed before anything else
import "zone.js/dist/zone-node";
import "reflect-metadata";
import { enableProdMode } from "@angular/core";
import * as express from "express";
import { join } from "path";
// Faster server renders w/ Prod mode (dev mode never needed)
enableProdMode();
// Express server
const app = express();
const PORT = process.env.PORT || 4000;
const DIST_FOLDER = join(process.cwd(), "dist");
// * NOTE :: leave this as require() since this file is built Dynamically from webpack
const {
AppServerModuleNgFactory
} = require("./dist/server/main");
// Express Engine
import { ngExpressEngine } from "@nguniversal/express-engine";
app.engine(
"html",
ngExpressEngine({
bootstrap: AppServerModuleNgFactory,
})
);
app.set("view engine", "html");
app.set("views", join(DIST_FOLDER, "spartacus-bootcamp"));
// TODO: implement data requests securely
app.get("/api/*", (req, res) => {
res.status(404).send("data requests are not supported");
});
// Server static files from /browser
app.get("*.*", express.static(join(DIST_FOLDER, "spartacus-bootcamp")));
// All regular routes use the Universal engine
app.get("*", (req, res) => {
res.render("index", { req });
});
// Start up the Node server
app.listen(PORT, () => {
console.log(`Node server listening on http://localhost:${PORT}`);
});