Skip to content

Commit 70c4a07

Browse files
authored
Merge pull request #3100 from muhammadv-i/patch-2
Replaced create-react-app with create vite@latest -- --template react
2 parents 5468de6 + 8799fb7 commit 70c4a07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/3/en/part3a.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ As mentioned in [part 1](/en/part1/java_script), browsers don't yet support the
1717

1818
Our goal is to implement a backend that will work with the notes application from [part 2](/en/part2/). However, let's start with the basics by implementing a classic "hello world" application.
1919

20-
**Notice** that the applications and exercises in this part are not all React applications, and we will not use the <i>create-react-app</i> utility for initializing the project for this application.
20+
**Notice** that the applications and exercises in this part are not all React applications, and we will not use the <i>create vite@latest -- --template react</i> utility for initializing the project for this application.
2121

2222
We had already mentioned [npm](/en/part2/getting_data_from_server#npm) back in part 2, which is a tool used for managing JavaScript packages. In fact, npm originates from the Node ecosystem.
2323

@@ -833,7 +833,7 @@ What exactly is happening in that line of code? <em>notes.map(n => n.id)</em> cr
833833

834834
**NB:** It's recommended to do all of the exercises from this part into a new dedicated git repository, and place your source code right at the root of the repository. Otherwise, you will run into problems in exercise 3.10.
835835

836-
**NB:** Because this is not a frontend project and we are not working with React, the application <strong>is not created</strong> with create-react-app. You initialize this project with the <em>npm init</em> command that was demonstrated earlier in this part of the material.
836+
**NB:** Because this is not a frontend project and we are not working with React, the application <strong>is not created</strong> with create vite@latest -- --template react. You initialize this project with the <em>npm init</em> command that was demonstrated earlier in this part of the material.
837837

838838
**Strong recommendation:** When you are working on backend code, always keep an eye on what's going on in the terminal that is running your application.
839839

0 commit comments

Comments
 (0)