Skip to content

Commit 46d034f

Browse files
authored
Merge pull request #1 from meetdave3/ssr
Implemented Server Side Rendering using Angular Universal (SEO Friendly)
2 parents 48e728d + 28e929a commit 46d034f

17 files changed

+3151
-3061
lines changed

README.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,43 @@
22

33
[![Build Status](https://travis-ci.com/meetdave3/Angular6-Node.js-TypeScript.svg?branch=master)](https://travis-ci.com/meetdave3/Angular6-Node.js-TypeScript)
44

5-
This project is a starter project with Node at the backend (fully written in TypeScript) and Angular 6 at the frontend.
5+
This project is a starter project with Node at the backend (fully written in TypeScript) and Angular 6 on the client side.
66

77
This repo shall allow you to instantly get started with a full stack project in place. Just connect it with your favorite database and you're good to go.
88

99
## Repo Features
1010

11-
- [x] Angular 6.0.0
11+
- [x] Angular 6.0.9
1212
- [x] Bootstrap
1313
- [x] Lazy Loaded Routes
1414
- [x] Angular Material
15-
- [x] PWA
15+
- [x] PWA Ready
1616
- [x] Server Side TypeScript
1717
- [x] Node.js API
1818
- [x] Production Ready Build
19+
- [x] Server Side Rendering (Angular Universal)
1920

2021
## Setup
2122

2223
After cloning, run `npm install`
2324

2425
## Development server
2526

26-
Run `ng build --watch`
27+
Run `ng serve`
2728

28-
After the --watch build, `npm run dev` for a dev server. Navigate to `http://localhost:3000/`.
29-
30-
The app will automatically reload if you change any of the source files. (Server side as well as client side)
29+
Navigate to `http://localhost:4200/`.
3130

3231
## Code scaffolding
3332

3433
Run `ng g c component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
3534

3635
## Production Build
3736

38-
First run `ng build --prod` to build the project
37+
Run `npm run build:ssr && npm run serve:ssr` to build the project
38+
39+
Compiles the boiler application and spins up a Node Express to serve the Boiler Universal application on http://localhost:3000
3940

40-
Then, `npm run prod` to start the node server for production. The build artifacts will be stored in the `dist/` directory.
41+
`npm run build:prerender && npm run serve:prerender` - Compiles your application and prerenders your application's files, spinning up a demo http-server so you can view it on http://localhost:8080 Note: To deploy your static site to a static hosting platform you will have to deploy the dist/browser folder, rather than the usual dist
4142

4243
## Running unit tests
4344

angular.json

+19-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"build": {
1212
"builder": "@angular-devkit/build-angular:browser",
1313
"options": {
14-
"outputPath": "dist",
14+
"outputPath": "dist/browser",
1515
"index": "src/index.html",
1616
"main": "src/main.ts",
1717
"tsConfig": "src/tsconfig.app.json",
@@ -48,6 +48,24 @@
4848
}
4949
}
5050
},
51+
"server": {
52+
"builder": "@angular-devkit/build-angular:server",
53+
"options": {
54+
"outputPath": "dist/server",
55+
"main": "src/main.server.ts",
56+
"tsConfig": "src/tsconfig.server.json"
57+
},
58+
"configurations": {
59+
"production": {
60+
"fileReplacements": [
61+
{
62+
"replace": "src/environments/environment.ts",
63+
"with": "src/environments/environment.prod.ts"
64+
}
65+
]
66+
}
67+
}
68+
},
5169
"serve": {
5270
"builder": "@angular-devkit/build-angular:dev-server",
5371
"options": {

0 commit comments

Comments
 (0)