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: pages/vi/vi-docker-development-tutorial.md
+14-11Lines changed: 14 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,27 +9,30 @@
9
9
10
10
For development, the following additional tools are required:
11
11
12
-
- Node.js v14
13
-
- Angular CLI v10
12
+
- Node.js v18
13
+
- Angular CLI v15
14
+
- NPM v10
15
+
16
+
To verify the versions currently in use, refer to our [Readme.md](https://github.com/open-learning-exchange/planet/blob/master/README.md). If there are any discrepancies, treat the versions listed in the README as the source of truth.
14
17
15
18
### Node.js
16
19
17
20
[**Node.js**](https://nodejs.org) is an open-source, cross-platform, back-end JavaScript runtime environment that runs on the V8 engine and executes JavaScript code outside a web browser.
18
21
19
-
1. Check if Node.js is already installed by running `node -v` in your terminal or Git Bash. If the output starts with `v14.`, you can skip the rest and proceed to "Angular CLI."
20
-
2. Check if you have a Node.js environment manager, such as `nvm` or `fnm`, by running `nvm -v` and `fnm -v`. If installed, use `nvm install 14` or `fnm use --install-if-missing 14` to install Node.js 14.
21
-
3. If neither is installed, you can install Node.js v14 by visiting [**Node.js — Download Node.js**](https://nodejs.org/en/download/package-manager):
22
-
1. In the first dropdown, select version `v14.*.*`
22
+
1. Check if Node.js is already installed by running `node -v` in your terminal or Git Bash. If the output starts with `v18.`, you can skip the rest and proceed to "Angular CLI."
23
+
2. Check if you have a Node.js environment manager, such as `nvm` or `fnm`, by running `nvm -v` and `fnm -v`. If installed, use `nvm install 18` or `fnm use --install-if-missing 18` to install Node.js 18.
24
+
3. If neither is installed, you can install Node.js v18 by visiting [**Node.js — Download Node.js**](https://nodejs.org/en/download/package-manager):
25
+
1. In the first dropdown, select version `v18.*.*`
23
26
2. In the second dropdown, select your operating system.
24
27
3. In the third dropdown:
25
28
- For Linux, select `nvm`
26
29
- For Windows, select `fnm`
27
30
- For macOS, select `fnm`
28
-
4. Follow the instruction to install node.js v14 onto your system
31
+
4. Follow the instruction to install node.js v18 onto your system
29
32
30
33
### Angular CLI
31
34
32
-
[**Angular CLI**](https://cli.angular.io) is a command-line interface for Angular. After installing node 14, run **`npm install -g @angular/cli@10`** to install Angular CLI v10.
35
+
[**Angular CLI**](https://cli.angular.io) is a command-line interface for Angular. After installing node 18, run **`npm install -g @angular/cli@15`** to install Angular CLI v15.
33
36
34
37
## Introduction
35
38
@@ -46,10 +49,10 @@ npm -v
46
49
47
50
-`docker -v` - Should display Docker version
48
51
-`git -v` - Should display git version
49
-
-`node -v` - Should display `v14.*`
50
-
-`npm -v` - Should display `6.*`
52
+
-`node -v` - Should display `v18.*`
53
+
-`npm -v` - Should display `10.*`
51
54
52
-
Next, run `ng version` to check your Angular CLI version, look for `Angular CLI: 10.*` below the Angular CLI ASCII art.
55
+
Next, run `ng version` to check your Angular CLI version, look for `Angular CLI: 15.*` below the Angular CLI ASCII art.
0 commit comments