@@ -4,7 +4,10 @@ title: Getting started
4
4
sidebar_label : Getting started
5
5
---
6
6
7
- ## Quick Overview
7
+ Create React App is an officially supported way to create single-page React
8
+ applications. It offers a modern build setup with no configuration.
9
+
10
+ ## Quick Start
8
11
9
12
``` sh
10
13
npx create-react-app my-app
@@ -58,7 +61,9 @@ yarn create react-app my-app
58
61
59
62
_ ` yarn create ` is available in Yarn 0.25+_
60
63
61
- It will create a directory called ` my-app ` inside the current folder.<br >
64
+ ## Output
65
+
66
+ Running either of these commands will create a directory called ` my-app ` inside the current folder.<br >
62
67
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
63
68
64
69
```
@@ -88,6 +93,8 @@ Once the installation is done, you can open your project folder:
88
93
cd my-app
89
94
```
90
95
96
+ ## Scripts
97
+
91
98
Inside the newly created project, you can run some built-in commands:
92
99
93
100
### ` npm start ` or ` yarn start `
@@ -114,6 +121,6 @@ By default, runs tests related to files changed since the last commit.
114
121
Builds the app for production to the ` build ` folder.<br >
115
122
It correctly bundles React in production mode and optimizes the build for the best performance.
116
123
117
- The build is minified and the filenames include the hashes.< br >
124
+ The build is minified and the filenames include the hashes.
118
125
119
126
Your app is ready to be deployed.
0 commit comments