You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-5Lines changed: 15 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -42,17 +42,27 @@ Its also possible to install the modules as usual using npm:
42
42
43
43
npm install
44
44
45
-
Yarn has the big advantage that if you use it you will be installing the exact same dependencies than I installed in my machine, so you wont run into issues caused by semantic versioning updates.
45
+
NPM 5 or above has the big advantage that if you use it you will be installing the exact same dependencies than I installed in my machine, so you wont run into issues caused by semantic versioning updates.
46
46
47
47
This should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.
48
48
49
-
# To Run the Development Server
49
+
# To Run the Development Backend Server
50
50
51
-
We can start the chat application with the following command:
51
+
We can start the sample application backend with the following command:
52
52
53
-
npm start
53
+
npm run server
54
54
55
-
The application is visible at port 4200 - [http://localhost:4200](http://localhost:4200)
55
+
This is a small Node REST API server, and it uses HTTPS.
56
+
57
+
# To run the Development UI Server
58
+
59
+
To run the frontend part of our code, we will use the Angular CLI:
60
+
61
+
npm start
62
+
63
+
The application is visible at port 4200, but you need to use HTTPS - [https://localhost:4200](https://localhost:4200)
64
+
65
+
This application uses a self-signed certificate, so you will need to accept it using the browser. If you are using Chrome, you will need to click Advanced and then choose "Proceed to localhost".
0 commit comments