MobX icon
MobX icon

MobX

MobX is a state manager - simple and scalable by transparently applying functional reactive programming (TFRP) :

Anything that can be derived from the application state, should be derived. Automatically.

MobX screenshot 1

Cost / License

  • Free
  • Open Source

Platforms

  • Self-Hosted
-
No reviews
0likes
0comments
0news articles

Features

Suggest and vote on features
No features, maybe you want to suggest one?

 Tags

MobX News & Activities

Highlights All activities

Recent activities

No activities found.

MobX information

  • Developed by

    Unknown
  • Licensing

    Open Source (MIT) and Free product.
  • Written in

  • Alternatives

    5 alternatives listed
  • Supported Languages

    • English

AlternativeTo Category

Development

GitHub repository

  •  28,122 Stars
  •  1,802 Forks
  •  78 Open Issues
  •   Updated  
View on GitHub
MobX was added to AlternativeTo by wooandoo on and this page was last updated .
No comments or reviews, maybe you want to be first?
Post comment/review

Featured in Lists

This list is inspired by the Kamran Ahmed's "2019 Developer Roadmap." …

List by Alex Ruiz with 39 apps, updated

What is MobX?

MobX is a battle tested library that makes state management simple and scalable by transparently applying functional reactive programming (TFRP). The philosophy behind MobX is very simple:

Anything that can be derived from the application state, should be derived. Automatically.

which includes the UI, data serialization, server communication, etc.

React and MobX together are a powerful combination. React renders the application state by providing mechanisms to translate it into a tree of renderable components. MobX provides the mechanism to store and update the application state that React then uses.

Both React and MobX provide very optimal and unique solutions to common problems in application development. React provides mechanisms to optimally render UI by using a virtual DOM that reduces the number of costly DOM mutations. MobX provides mechanisms to optimally synchronize application state with your React components by using a reactive virtual dependency state graph that is only updated when strictly needed and is never stale.

Official Links