├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Kiran 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # awesome-mobx [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | > Awesome list mobx resources 4 | 5 | ### [Mobx](https://github.com/mobxjs/mobx) 6 | ### [Documentation of mobx](https://mobxjs.github.io/mobx/) 7 | 8 | ### Tools & libraries 9 | * [**mobx-react** - React bindings to mobx](https://github.com/mobxjs/mobx-react) 10 | * [mobx-react-devtools](https://github.com/mobxjs/mobx-react-devtools) 11 | * [mobx-utils](https://github.com/mobxjs/mobx-utils) 12 | * [mobx-forms](https://github.com/oreqizer/mobx-forms) 13 | * [react-native-mobx](https://github.com/aksonov/react-native-mobx) 14 | * [mobx-connect](https://github.com/nightwolfz/mobx-connect) 15 | 16 | ### Boilerplates 17 | * [mobx-react-boilerplate](https://github.com/mobxjs/mobx-react-boilerplate) 18 | * [mobx-react-typescript-boilerplate](https://github.com/mobxjs/mobx-react-typescript-boilerplate) 19 | * [create-react-app-mobx](https://github.com/mobxjs/create-react-app-mobx/) 20 | * [react-mobx-soundcloud](https://github.com/rwieruch/react-mobx-soundcloud) 21 | 22 | ### Examples 23 | * [mobx-react-todomvc](https://github.com/mobxjs/mobx-react-todomvc) 24 | * [favesound-mobx](https://github.com/rwieruch/favesound-mobx) 25 | * [cosmicapp-voting-app](https://github.com/cosmicjs/cosmicapp-voting-app) 26 | * [task-management](https://github.com/nickuraltsev/task-management) 27 | * [nested-task-list-mobx-react](https://github.com/justinhaaheim/nested-task-list-mobx-react) 28 | 29 | ### Videos 30 | * [Manage Complex State in React Apps with MobX](https://egghead.io/courses/manage-complex-state-in-react-apps-with-mobx) 31 | * [State Management is Easy](https://www.youtube.com/watch?v=ApmSsu3qnf0) 32 | * [Practical React with MobX](https://www.youtube.com/watch?v=XGwuM_u7UeQ) 33 | 34 | ### Blogs 35 | * [Becoming fully reactive: an in-depth explanation of MobX](https://medium.com/@mweststrate/becoming-fully-reactive-an-in-depth-explanation-of-mobservable-55995262a254) 36 | * [Redux or MobX: An attempt to dissolve the Confusion](https://www.robinwieruch.de/redux-mobx-confusion/) 37 | * [Why We Chose MobX Over Redux For Spectacle Editor](https://formidable.com/blog/2016/06/02/why-we-chose-mobx-over-redux-for-spectacle-editor/) 38 | * [Handling React Forms with Mobx Observables](https://blog.risingstack.com/handling-react-forms-with-mobx-observables/) 39 | * [How to Test React and MobX with Jest](https://semaphoreci.com/community/tutorials/how-to-test-react-and-mobx-with-jest) 40 | * [From Redux to MobX in a React SoundCloud Client](https://www.robinwieruch.de/mobx-react/) 41 | * [Building a performant Stopwatch with MobX and React](https://onsen.io/blog/mobx-tutorial-react-stopwatch/) 42 | * [Real time Chat App with OnsenUI and Horizon!](https://onsen.io/blog/onsenui-horizon-rethinkdb-chat/) 43 | --------------------------------------------------------------------------------