-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3c59c1
commit f8b20bc
Showing
10 changed files
with
226 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// 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 CLIENT_DIST_FOLDER = join(process.cwd(), 'dist'); | ||
|
||
// * NOTE :: leave this as require() since this file is built Dynamically from webpack | ||
const { | ||
AppServerModuleNgFactory, | ||
LAZY_MODULE_MAP, | ||
} = require('./dist-server/main.bundle'); | ||
|
||
// Express Engine | ||
import { ngExpressEngine } from '@nguniversal/express-engine'; | ||
// Import module map for lazy loading | ||
import { provideModuleMap } from '@nguniversal/module-map-ngfactory-loader'; | ||
|
||
app.engine( | ||
'html', | ||
ngExpressEngine({ | ||
bootstrap: AppServerModuleNgFactory, | ||
providers: [provideModuleMap(LAZY_MODULE_MAP)], | ||
}), | ||
); | ||
|
||
app.set('view engine', 'html'); | ||
app.set('views', join(CLIENT_DIST_FOLDER, 'browser')); | ||
|
||
// 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(CLIENT_DIST_FOLDER)); | ||
|
||
// All regular routes use the Universal engine | ||
app.get('*', (req, res) => { | ||
res.render(join(CLIENT_DIST_FOLDER, 'index.html'), { req }); | ||
}); | ||
|
||
// Start up the Node server | ||
app.listen(PORT, () => { | ||
console.log(`Node server listening on http://localhost:${PORT}`); | ||
}); |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { ServerModule } from '@angular/platform-server'; | ||
import { ModuleMapLoaderModule } from '@nguniversal/module-map-ngfactory-loader'; | ||
|
||
import { AppModule } from './app.module'; | ||
import { AppComponent } from './app.component'; | ||
|
||
@NgModule({ | ||
imports: [AppModule, ServerModule, ModuleMapLoaderModule], | ||
providers: [ | ||
// Add universal-only providers here | ||
], | ||
bootstrap: [AppComponent], | ||
}) | ||
export class AppServerModule {} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { AppServerModule } from './app/app.server.module'; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
}, | ||
"exclude": [ | ||
"test.ts", | ||
"**/*.spec.ts" | ||
"**/*.spec.ts", | ||
"test-utils/**/*.ts" | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "../out-tsc/app", | ||
"baseUrl": "./", | ||
"module": "commonjs", | ||
"types": [] | ||
}, | ||
"exclude": [ | ||
"test.ts", | ||
"**/*.spec.ts", | ||
"test-utils/**/*.ts" | ||
], | ||
"angularCompilerOptions": { | ||
"entryModule": "app/app.server.module#AppServerModule" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
const path = require('path'); | ||
const webpack = require('webpack'); | ||
|
||
module.exports = { | ||
entry: {server: './server.ts'}, | ||
resolve: {extensions: ['.js', '.ts']}, | ||
target: 'node', | ||
// this makes sure we include node_modules and other 3rd party libraries | ||
externals: [/(node_modules|main\..*\.js)/], | ||
output: { | ||
path: path.join(__dirname, 'dist-server'), | ||
filename: '[name].js' | ||
}, | ||
module: { | ||
rules: [ | ||
{test: /\.ts$/, loader: 'ts-loader'} | ||
] | ||
}, | ||
plugins: [ | ||
// Temporary Fix for issue: https://github.com/angular/angular/issues/11580 | ||
// for "WARNING Critical dependency: the request of a dependency is an expression" | ||
new webpack.ContextReplacementPlugin( | ||
/(.+)?angular(\\|\/)core(.+)?/, | ||
path.join(__dirname, 'src'), // location of your src | ||
{} // a map of your routes | ||
), | ||
new webpack.ContextReplacementPlugin( | ||
/(.+)?express(\\|\/)(.+)?/, | ||
path.join(__dirname, 'src'), | ||
{} | ||
) | ||
] | ||
} |