@@ -9,23 +9,23 @@ Reactjs can be installed by using any of the following ways:
9
9
10
10
# 1. Using NPX
11
11
- it’s a package runner tool that comes with npm 5.2+
12
- ## npx create-react-app my-app
12
+ ## npx create-react-app myFirstReactProject
13
13
14
14
# 2. Using NPM
15
15
- it is available in npm 6+
16
- ## npm init react-app my-app
16
+ ## npm init react-app myFirstReactProject
17
17
18
18
# 3. Using Yarn
19
19
- it is available in Yarn 0.25+
20
- ## yarn create react-app my-app
20
+ ## yarn create react-app myFirstReactProject
21
21
22
22
After installing reactjs using any of the above method
23
23
Go to the your project folder and run your react app
24
24
25
- ### cd my-app
25
+ ### cd myFirstReactProject
26
26
### npm start
27
27
28
- Note: my-app is the name of your react project, you can change it as per your interest/requirement.
28
+ Note: myFirstReactProject is the name of your react app/ project, you can change it as per your interest/requirement.
29
29
30
30
# 4. Using create-react-app
31
31
@@ -38,15 +38,16 @@ For Linux and Mac:
38
38
## sudo npm install -g create-react-app
39
39
40
40
Step-2: Now, create your project.
41
- ## create-react-app my-app
41
+ ## create-react-app myFirstReactProject
42
42
43
43
Step-3: Now, start the your app/project.
44
- //Go to your project folder
45
- ## cd my-app
46
-
47
- //Start your App
44
+ //Go to your project folder & start your app.
45
+ ## cd myFirstReactProject
48
46
## npm start
49
47
48
+
49
+
50
+
50
51
# Getting Started with Create React App
51
52
52
53
This project was bootstrapped with [ Create React App] ( https://github.com/facebook/create-react-app ) .
0 commit comments