Skip to content

Commit 0945501

Browse files
Update README.md
1 parent 7615857 commit 0945501

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

README.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@ Reactjs can be installed by using any of the following ways:
99

1010
# 1. Using NPX
1111
- 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
1313

1414
# 2. Using NPM
1515
- it is available in npm 6+
16-
## npm init react-app my-app
16+
## npm init react-app myFirstReactProject
1717

1818
# 3. Using Yarn
1919
- it is available in Yarn 0.25+
20-
## yarn create react-app my-app
20+
## yarn create react-app myFirstReactProject
2121

2222
After installing reactjs using any of the above method
2323
Go to the your project folder and run your react app
2424

25-
### cd my-app
25+
### cd myFirstReactProject
2626
### npm start
2727

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

3030
# 4. Using create-react-app
3131

@@ -38,15 +38,16 @@ For Linux and Mac:
3838
## sudo npm install -g create-react-app
3939

4040
Step-2: Now, create your project.
41-
## create-react-app my-app
41+
## create-react-app myFirstReactProject
4242

4343
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
4846
## npm start
4947

48+
49+
50+
5051
# Getting Started with Create React App
5152

5253
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

0 commit comments

Comments
 (0)