https://github.com/abritopach/ionic-ngrx-example
Sample project that shows how ngrx can help you manage application state in your Ionic app.
https://github.com/abritopach/ionic-ngrx-example
ionic ionic-framework ionic2 ngrx ngrx-effects ngrx-store
Last synced: 6 months ago
JSON representation
Sample project that shows how ngrx can help you manage application state in your Ionic app.
- Host: GitHub
- URL: https://github.com/abritopach/ionic-ngrx-example
- Owner: abritopach
- Created: 2017-06-28T10:14:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-29T16:35:29.000Z (over 8 years ago)
- Last Synced: 2025-03-27T12:46:45.884Z (6 months ago)
- Topics: ionic, ionic-framework, ionic2, ngrx, ngrx-effects, ngrx-store
- Language: TypeScript
- Homepage:
- Size: 1.56 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ionic-ngrx-example
Sample project that shows how ngrx can help you manage application state in your Ionic app.
Original source (Ashteya Biharisingh):
- https://gonehybrid.com/a-beginners-guide-to-using-ngrx-in-an-ionic-2-app-part-1/
- https://gonehybrid.com/a-beginners-guide-to-using-ngrx-in-an-ionic-2-app-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-ngrx-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