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
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,32 @@ If that does not resolve your issue, please post to the [discussion board for th
13
13
14
14
NOTE: The installation was tested using node v10.16.0 and npm 6.9.0.
15
15
16
+
## INSTALLING THE CODE
17
+
18
+
The following are detailed instructions for installing the code so you can code along with the course.
19
+
20
+
0) Ensure you have node installed.
21
+
22
+
Use node -v to ensure you have version 10.16.0 or higher before proceeding.
23
+
24
+
1) Download or clone the code from this repository.
25
+
26
+
If you download as a zip file, but sure to unzip it.
27
+
28
+
2) Navigate to the APM-Start folder (or APM folder if you renamed it).
29
+
30
+
There should be a package.json file in this folder.
31
+
32
+
3) In a command window (or the Command prompt in VS Code), type `npm install`.
33
+
34
+
This creates a node_modules folder and installs all packages from the package.json file into that folder. You may see a few warnings during this process, but you should not see any errors.
35
+
36
+
4) In the same command window (or the Command property in VS Code), type `npm start`.
37
+
38
+
The application should then compile and launch in your default browser.
39
+
40
+
If these steps don't work for you, see STACKBLITZ below.
41
+
16
42
## STACKBLITZ
17
43
18
44
If you want to work through the course without downloading npm or any of the libraries, try the course with Stackblitz by following this link: https://stackblitz.com/github/DeborahK/Angular-GettingStarted/tree/master/APM-Start
0 commit comments