@@ -4,7 +4,10 @@ title: Getting started
44sidebar_label : Getting started
55---
66
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
811
912``` sh
1013npx create-react-app my-app
@@ -58,7 +61,9 @@ yarn create react-app my-app
5861
5962_ ` yarn create ` is available in Yarn 0.25+_
6063
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 >
6267Inside that directory, it will generate the initial project structure and install the transitive dependencies:
6368
6469```
@@ -88,6 +93,8 @@ Once the installation is done, you can open your project folder:
8893cd my-app
8994```
9095
96+ ## Scripts
97+
9198Inside the newly created project, you can run some built-in commands:
9299
93100### ` npm start ` or ` yarn start `
@@ -114,6 +121,6 @@ By default, runs tests related to files changed since the last commit.
114121Builds the app for production to the ` build ` folder.<br >
115122It correctly bundles React in production mode and optimizes the build for the best performance.
116123
117- The build is minified and the filenames include the hashes.< br >
124+ The build is minified and the filenames include the hashes.
118125
119126Your app is ready to be deployed.
0 commit comments