Skip to content

Commit af9b979

Browse files
committed
update the version specs
1 parent e516566 commit af9b979

File tree

3 files changed

+29
-30
lines changed

3 files changed

+29
-30
lines changed

install-react-tools/linux/install-linux.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ In this guide, we will install the following development tools
1313
This course has been tested with the following software versions:
1414

1515
* nvm 0.35.0
16-
* npm 7.24.0
17-
* node 16.10.0
18-
* tsc 4.6.4
16+
* npm 8.15
17+
* node 16.17.0
18+
* tsc 4.7.4
1919
* React 18.2.0
20-
* Spring Boot 2.7.1
20+
* Spring Boot 2.7.3
2121

2222
It is **highly recommended** that you use the versions listed above to make sure you do not encounter any issues with the course. If you choose to use other versions then the code may not work as expected.
2323

@@ -141,24 +141,24 @@ In this course, we'll use Node to run applications that we develop using TypeScr
141141
142142
## Switch Node Versions
143143
144-
> Note: This course has been tested with Node 16.10. We will install this version.
144+
> Note: This course has been tested with Node 16.17. We will install this version.
145145
146-
1. Install and use Node 16.10
146+
1. Install and use Node 16.17
147147
148148
```bash
149-
nvm install 16.10.0
150-
nvm use 16.10.0
149+
nvm install 16.17.0
150+
nvm use 16.17.0
151151
```
152152
153153
## Install tsc
154154
tsc is the TypeScript compiler. We use tsc to compile TypeScript code into JavaScript code. We can install the TypeScript compiler using the Node Package Manager (npm)
155155
156-
> Note: This course has been tested with TypeScript 4.6. We will install this version.
156+
> Note: This course has been tested with TypeScript 4.7. We will install this version.
157157
158158
1. In your terminal window, enter the following command
159159
160160
```
161-
npm install --location=global typescript@4.6.4
161+
npm install --location=global typescript@4.7.4
162162
```
163163
164164
The `--location=global` installs this as a global package. The TypeScript compiler will be available to all directories for this user.

install-react-tools/mac/install-mac.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ In this guide, we will install the following development tools
1313
This course has been tested with the following software versions:
1414

1515
* nvm 0.35.0
16-
* npm 7.24.0
17-
* node 16.10.0
18-
* tsc 4.6.4
16+
* npm 8.15
17+
* node 16.17.0
18+
* tsc 4.7.4
1919
* React 18.2.0
20-
* Spring Boot 2.7.1
20+
* Spring Boot 2.7.3
2121

2222
It is **highly recommended** that you use the versions listed above to make sure you do not encounter any issues with the course. If you choose to use other versions then the code may not work as expected.
2323

@@ -192,24 +192,24 @@ In this course, we'll use Node to run applications that we develop using TypeScr
192192
193193
## Switch Node Versions
194194
195-
> Note: This course has been tested with Node 16.10. We will install this version.
195+
> Note: This course has been tested with Node 16.17. We will install this version.
196196
197-
1. Install and use Node 16.10
197+
1. Install and use Node 16.17
198198
199199
```bash
200-
nvm install 16.10.0
201-
nvm use 16.10.0
200+
nvm install 16.17.0
201+
nvm use 16.17.0
202202
```
203203
204204
## Install tsc
205205
tsc is the TypeScript compiler. We use tsc to compile TypeScript code into JavaScript code. We can install the TypeScript compiler using the Node Package Manager (npm)
206206
207-
> Note: This course has been tested with TypeScript 4.6. We will install this version.
207+
> Note: This course has been tested with TypeScript 4.7. We will install this version.
208208
209209
1. In your terminal window, enter the following command
210210
211211
```
212-
npm install --location=global typescript@4.6.4
212+
npm install --location=global typescript@4.7.4
213213
```
214214
215215
The `--location=global` installs this as a global package. The TypeScript compiler will be available to all directories for this user.

install-react-tools/ms-windows/install-ms-windows.md

+9-10
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ In this guide, we will install the following development tools
1111

1212
This course has been tested with the following software versions:
1313

14-
* nvm 0.35.0
15-
* npm 7.24.0
16-
* node 16.10.0
17-
* tsc 4.6.4
14+
* npm 8.15
15+
* node 16.17.0
16+
* tsc 4.7.4
1817
* React 18.2.0
19-
* Spring Boot 2.7.1
18+
* Spring Boot 2.7.3
2019

2120
It is **highly recommended** that you use the versions listed above to make sure you do not encounter any issues with the course. If you choose to use other versions then the code may not work as expected.
2221

@@ -34,11 +33,11 @@ Visual Studio Code is a general purpose IDE that support many programming langua
3433
## Install Node
3534
Node is the the runtime environment for executing JavaScript code from the command-line. By using Node, you can create any type of application using JavaScript including server-side / backend applications.
3635

37-
In this course, we'll use Node to run applications that we develop using TypeScript and Angular.
36+
In this course, we'll use Node to run applications that we develop using TypeScript and React.
3837

39-
> Note: This course has been tested with Node 16.10. We will install this version.
38+
> Note: This course has been tested with Node 16.17.0. We will install this version.
4039
41-
1. In your web browser, visit https://nodejs.org/download/release/v16.10.0/
40+
1. In your web browser, visit https://nodejs.org/download/release/v16.17.0/
4241

4342
2. Select the **Windows Installer (.msi)** for your system (32-bit or 64-bit)
4443

@@ -73,12 +72,12 @@ In this course, we'll use Node to run applications that we develop using TypeScr
7372
## Install tsc
7473
tsc is the TypeScript compiler. We use tsc to compile TypeScript code into JavaScript code. We can install the TypeScript compile using the Node Package Manager (npm)
7574

76-
> Note: This course has been tested with TypeScript 4.6. We will install this version.
75+
> Note: This course has been tested with TypeScript 4.7. We will install this version.
7776

7877
1. In your **Command Prompt** window, enter the following command
7978

8079
```
81-
npm install --location=global typescript@4.6.4
80+
npm install --location=global typescript@4.7.4
8281
```
8382

8483
The "--location=global" installs this as a global package. The TypeScript compiler will be available to all directories for this user.

0 commit comments

Comments
 (0)