Skip to content

Commit 283bf74

Browse files
committed
Add MobX questions
1 parent 0fa79a8 commit 283bf74

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,9 @@
329329
|313| [What is react scripts?](#what-is-react-scripts)|
330330
|314| [What are the features of create react app?](#what-are-the-features-of-create-react-app)|
331331
|315| [What is the purpose of renderToNodeStream method?](#what-is-the-purpose-of-rendertonodestream-method)|
332+
|316| [What is MobX?](#what-is-mobx)|
333+
|317| [What are the differences between Redux and MobX?](#what-are-the-differences-between-redux-and-mobx)|
334+
332335

333336
## Core React
334337

@@ -5156,3 +5159,10 @@
51565159
315. ### What is the purpose of renderToNodeStream method?
51575160
The `ReactDOMServer#renderToNodeStream` method is used to generate HTML on the server and send the markup down on the initial request for faster page loads. It also helps search engines to crawl your pages easily for SEO purposes.
51585161
**Note:** Remember this method is not available in the browser but only server.
5162+
316. ### What is MobX?
5163+
MobX is a simple, scalable and battle tested state management solution for applying functional reactive programming (TFRP). For reactJs application, you need to install below packages,
5164+
```bash
5165+
npm install mobx --save
5166+
npm install mobx-react --save
5167+
```
5168+
317. ### What are the differences between Redux and MobX?

0 commit comments

Comments
 (0)