Skip to content

Commit bced96c

Browse files
authored
update vi-docker-development-tutorial.md (fixes #3722) (#3723)
1 parent 61851a0 commit bced96c

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

pages/vi/vi-docker-development-tutorial.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,30 @@
99

1010
For development, the following additional tools are required:
1111

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.
1417

1518
### Node.js
1619

1720
[**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.
1821

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.*.*`
2326
2. In the second dropdown, select your operating system.
2427
3. In the third dropdown:
2528
- For Linux, select `nvm`
2629
- For Windows, select `fnm`
2730
- 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
2932

3033
### Angular CLI
3134

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.
3336

3437
## Introduction
3538

@@ -46,10 +49,10 @@ npm -v
4649

4750
- `docker -v` - Should display Docker version
4851
- `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.*`
5154

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.
5356

5457
## Container Setup
5558

0 commit comments

Comments
 (0)