Reputation: 305
I'm learning ReactJS and I want to ask some good combination about the said library, since React is just the view (V), how should we manage the data? These are some things I want to know.
List of libs/frameworks that can be used with React (along with some brief explanation), it would also be helpful if it's sorted how it should be learned first.
Some good starter pack with main build tool are gulp, browserify.
Thanks
Upvotes: 2
Views: 490
Reputation: 13105
You can take a look at the Data management section of Awesome React compilation:
Here is the current list:
I personally recommend taking a look at Redux - especially the great introductory lectures made available at Egghead.io by the author himself.
Alternatively you can also use a standalone model library (like Ampersand model), or a simpler abstraction for observable data structures (eg Observable Store), or in conjugation with an existing MVC framework like Backbone, Spine etc.
Upvotes: 3