2021-07-25 14:00:22 +02:00
|
|
|
require('source-map-support').install()
|
|
|
|
|
|
2021-07-24 20:25:09 +02:00
|
|
|
import 'zone.js/dist/zone-node';
|
2021-07-25 14:00:22 +02:00
|
|
|
import './ssr-polyfills'
|
2021-07-24 20:25:09 +02:00
|
|
|
|
2021-07-25 14:00:22 +02:00
|
|
|
import { enableProdMode } from '@angular/core';
|
2021-07-24 20:25:09 +02:00
|
|
|
|
|
|
|
|
// Express Engine
|
|
|
|
|
import { ngExpressEngine } from '@nguniversal/express-engine';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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(), 'build');
|
|
|
|
|
|
|
|
|
|
import { AppServerModule } from './app.server.module'
|
|
|
|
|
|
|
|
|
|
app.engine('html', ngExpressEngine({
|
|
|
|
|
bootstrap: AppServerModule,
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
app.set('view engine', 'html');
|
|
|
|
|
app.set('views', DIST_FOLDER);
|
|
|
|
|
|
|
|
|
|
// Example Express Rest API endpoints
|
|
|
|
|
// app.get('/api/**', (req, res) => { });
|
|
|
|
|
|
|
|
|
|
// Server static files from /browser
|
|
|
|
|
app.use('/static', express.static(DIST_FOLDER, {
|
|
|
|
|
maxAge: '1y'
|
|
|
|
|
}));
|
|
|
|
|
|
2021-07-25 14:00:22 +02:00
|
|
|
// var proxy = require('express-http-proxy');
|
2021-07-24 20:25:09 +02:00
|
|
|
|
2021-07-25 14:00:22 +02:00
|
|
|
app.get('*', (req, res) => {
|
2021-07-24 20:25:09 +02:00
|
|
|
res.render('index', { req });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2021-07-25 14:00:22 +02:00
|
|
|
// app.use('/', proxy('http://tabby.local:8000/api/', {
|
|
|
|
|
// }))
|
2021-07-24 20:25:09 +02:00
|
|
|
|
|
|
|
|
// Start up the Node server
|
|
|
|
|
app.listen(PORT, () => {
|
|
|
|
|
console.log(`Node Express server listening on http://localhost:${PORT}`);
|
|
|
|
|
});
|