Skip to content

Commit 4128eb5

Browse files
committed
Add create react app questions
1 parent 12d6583 commit 4128eb5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,8 @@
326326
|310| [What are typical middleware choices for handling asynchronous calls in Redux?](#what-are-typical-middleware-choices-for-handling-asynchronous-calls-in-redux)|
327327
|311| [Is browsers understand JSX code?](#is-browsers-understand-jsx-code)|
328328
|312| [Describe about data flow in react?](#describe-about-data-flow-in-react)|
329+
|313| [What is react scripts?](#what-is-react-scripts)|
330+
|314| [What are the features of create react app?](#what-are-the-features-of-create-react-app)|
329331

330332
## Core React
331333

@@ -5130,3 +5132,14 @@
51305132
No, browsers can't understand JSX code. You need a transpiler to convert your JSX to regular Javascript that browsers can understand. The most widely used transpiler right now is Babel.
51315133
312. ### Describe about data flow in react?
51325134
React implements one-way reactive data flow using props which reduce boilerplate and is easier to understand than traditional two-way data binding.
5135+
313. ### What is react scripts?
5136+
The `react-scripts` package is a set of scripts from the create-react-app starter pack which helps you kick off projects without configuring. The `react-scripts start` command sets up the development environment and starts a server, as well as hot module reloading.
5137+
314. ### What are the features of create react app?
5138+
Below are the list of some of the features provided by create react app.
5139+
1. React, JSX, ES6, Typescript and Flow syntax support.
5140+
2. Autoprefixed CSS
5141+
3. A live development server
5142+
4. A fast interactive unit test runner with built-in support for coverage reporting
5143+
5. A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps
5144+
6. An offline-first service worker and a web app manifest, meeting all the Progressive Web App criteria.
5145+

0 commit comments

Comments
 (0)