Skip to content

Commit 7849921

Browse files
committed
Upgrade to Angular 15 and Node 18
1 parent 21bd2aa commit 7849921

21 files changed

+13395
-14428
lines changed

.browserslistrc

-18
This file was deleted.

README.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

44
This repository contains the code of the course [Angular Universal In Depth](https://angular-university.io/course/angular-universal-course).
55

6-
This course repository is updated to Angular v14.
6+
This course repository is updated to Angular v15.
77

88
![Angular Universal In Depth](https://angular-university.s3-us-west-1.amazonaws.com/course-images/angular-universal-course.jpg)
99

1010
# Installation pre-requisites
1111

12-
Please use the latest Node long-term support (LTS) version.
12+
Please use Node 18 long-term support (LTS) version.
1313

1414
# Installing the Angular CLI
1515

@@ -37,22 +37,21 @@ NPM 5 or above has the big advantage that if you use it you will be installing t
3737

3838
This should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.
3939

40-
# To Run the Development Backend Server
41-
42-
In order to be able to provide realistic examples, we will need in our playground a small REST API backend server. We can start the sample application backend with the following command:
43-
44-
npm run server
45-
46-
This is a small Node REST API server.
47-
4840
# To run the Development UI Server
4941

5042
To run the frontend part of our code, we will use the Angular CLI:
5143

5244
npm start
5345

54-
The application is visible at port 4200: [http://localhost:4200](http://localhost:4200)
46+
The application is available at port 4200: [http://localhost:4200](http://localhost:4200)
47+
48+
# To run the Angular Universal Live Development Server
49+
50+
To run the application in development mode but still have it server side rendered:
51+
52+
npm run dev:ssr
5553

54+
The live universal application is available at port 4200: [http://localhost:4200](http://localhost:4200)
5655

5756

5857
# Important

angular.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"src/assets"
2828
],
2929
"styles": [
30-
"./node_modules/@angular/material/prebuilt-themes/purple-green.css",
3130
"src/styles.scss"
3231
],
3332
"scripts": [],
@@ -170,4 +169,4 @@
170169
"cli": {
171170
"analytics": "fa1e8b50-e624-42fd-9564-a9c98d1ad337"
172171
}
173-
}
172+
}

0 commit comments

Comments
 (0)