https://github.com/osdio/react-native-redux-kit
Just a redux demo for react-native
https://github.com/osdio/react-native-redux-kit
Last synced: about 1 year ago
JSON representation
Just a redux demo for react-native
- Host: GitHub
- URL: https://github.com/osdio/react-native-redux-kit
- Owner: osdio
- Created: 2015-10-23T07:15:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-22T03:55:14.000Z (over 10 years ago)
- Last Synced: 2025-05-07T08:57:52.947Z (about 1 year ago)
- Language: JavaScript
- Size: 115 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-native-redux-kit
> A start kit for **react-native + redux** project. This project is abstract from [noder](https://github.com/soliury/noder-react-native).
# How to start it?
```
git clone https://github.com/soliury/react-native-redux-kit.git
```
Install the package:
```
npm i
```
This project use **gulp** as a dev control tool. So make sure you have install the **gulp**.
# Useful script
### npm start
This is equal to `gulp start`, it will replace the the bundle url in `AppDelegate.m`. It will auto find the local ip of your computer and fill it to the `AppDelegate.m`.
If you want to change the `port` of bundle url, you can change the `port` in `gulpFile.coffee`:
```
port = 8080
```
### gulp package
Just run react-native package script, This won't change the bundle url in `AppDelegate.m`.
# Files struct
TBD