Skip to content

Latest commit

 

History

History
97 lines (77 loc) · 3.02 KB

1-links.md

File metadata and controls

97 lines (77 loc) · 3.02 KB

Links mentioned in each lesson of the React Course:

Lesson 1

Lesson 2

Lesson 3

Lesson 4

Lesson 5

How to Install NodeJS

Install the latest version of NodeJS:
https://github.com/SuperSimpleDev/installation-instructions/blob/main/nodejs.md

Note: this course works with NodeJS version 20 or higher.
To check your version of NodeJS, run the command node -v in your command line.
If the version is lower than 20, you'll need to re-install a higher version of NodeJS.

Version of npx create-vite

Here's the version of create-vite we're going to use to set up React:

6.2.0

Here's the full command to set up React:

Version of React

Note: If you used npx create-vite 6.2.0 or higher, you have the correct version of React and you can skip this step.

  1. Open package.json inside the chatbot-project folder.
  2. Look for the dependencies section.
"dependencies": {
  "react": "^19.0.0",
  "react-dom": "^19.0.0"
},
  1. If your version of react and react-dom starts with 19 or higher, you have the correct version of React. You don't need to update React.

  2. If your version starts with 18, run this command to update React:

npm install react@19 react-dom@19 @types/react@19 @types/react-dom@19

Lesson 6

Version of npx create-vite

Click here to get the correct version of npx-vite to use.

Install Git

Click here for instructions on installing Git.

Starting code for Ecommerce Project

Click here to download the starting code.

Version of react-router

Here's the version of react-router we use:

7.1.5

Here's the full command to install react-router:

npm install [email protected]

react-router documentation

https://reactrouter.com/7.1.5/start/library/routing

Lesson 7

Lesson 8

Lesson 9