Created
October 16, 2019 21:38
-
-
Save bcabanes/4d77cd82e49a261ce7e3322ead7ab3fe to your computer and use it in GitHub Desktop.
SSR NodeJs server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'zone.js/dist/zone-node'; | |
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(); | |
// Express server | |
const app = express(); | |
const PORT = process.env.PORT || 4000; | |
const DIST_FOLDER = join(process.cwd(), 'dist/apps/tuskdesk'); | |
// * NOTE :: leave this as require() since this file is built Dynamically from webpack | |
const { AppServerModuleNgFactory, LAZY_MODULE_MAP } = require('../../../dist/apps/tuskdesk/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', DIST_FOLDER); | |
// Example Express Rest API endpoints | |
// app.get('/api/**', (req, res) => { }); | |
// Server static files from /browser | |
app.get('*.*', express.static(DIST_FOLDER, { | |
maxAge: '1y' | |
})); | |
// 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 Express server listening on http://localhost:${PORT}`); | |
}); |
Oh, I needed to change apps to app in the paths dist/apps/ -> dist/app/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any ideas about why I'm getting this error?
ERROR in ./apps/customer-job-detail-ssr/src/main.ts
Module not found: Error: Can't resolve '../../../dist/apps/customer-job-detail/server/main' in '/Users/jared.christensen/Repos/Work/angular-front-end-monorepo/apps/customer-job-detail-ssr/src'
There was an error with the build. See above.
/Users/jared.christensen/Repos/Work/angular-front-end-monorepo/dist/apps/customer-job-detail-ssr/main.js was not restarted.