You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -326,6 +326,8 @@
326
326
|310|[What are typical middleware choices for handling asynchronous calls in Redux?](#what-are-typical-middleware-choices-for-handling-asynchronous-calls-in-redux)|
|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)|
329
331
330
332
## Core React
331
333
@@ -5130,3 +5132,14 @@
5130
5132
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.
5131
5133
312. ### Describe about data flow in react?
5132
5134
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.
0 commit comments