Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abritopach/ionic-mobx-example
Sample project that shows how mobx can help you manage application state in your Ionic app.
https://github.com/abritopach/ionic-mobx-example
ionic ionic-framework ionic2 mobx mobx-ionic
Last synced: 19 days ago
JSON representation
Sample project that shows how mobx can help you manage application state in your Ionic app.
- Host: GitHub
- URL: https://github.com/abritopach/ionic-mobx-example
- Owner: abritopach
- Created: 2017-07-17T07:49:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-21T09:19:54.000Z (over 7 years ago)
- Last Synced: 2024-11-27T13:44:14.487Z (3 months ago)
- Topics: ionic, ionic-framework, ionic2, mobx, mobx-ionic
- Language: TypeScript
- Homepage:
- Size: 1.56 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ionic-mobx-example
Sample project that shows how mobx can help you manage application state in your Ionic app.
Original source (Ashteya Biharisingh):
- https://gonehybrid.com/how-to-manage-state-in-ionic-apps-with-mobx-part-1/
- https://gonehybrid.com/how-to-manage-state-in-ionic-apps-with-mobx-part-2/* FrontEnd: Ionic App.
## Running
Before you go through this example, you should have at least a basic understanding of Ionic concepts. You must also already have Ionic installed on your machine.
* Test in localhost:
To run it, cd into `ionic-mobx-example` and run:
```bash
npm install
ionic serve
```* Test in Android:
```bash
ionic cordova add platform android
ionic cordova run android
```* Test in iOS:
```bash
ionic cordova add platform ios
ionic cordova run ios
```## Requirements
* [Node.js](http://nodejs.org/)
* [Ionic Cordova](https://ionicframework.com/docs/intro/installation/)## License
MIT License.
Original work Copyright (c) Ashteya Biharisingh