Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitbravo/react-native-chat-app
Mobile and web chat app using react-native
https://github.com/bitbravo/react-native-chat-app
firebase firebase-database react-native
Last synced: 9 days ago
JSON representation
Mobile and web chat app using react-native
- Host: GitHub
- URL: https://github.com/bitbravo/react-native-chat-app
- Owner: BitBravo
- Created: 2017-09-29T15:20:08.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-18T08:56:59.000Z (almost 7 years ago)
- Last Synced: 2024-02-02T12:38:13.128Z (10 months ago)
- Topics: firebase, firebase-database, react-native
- Language: JavaScript
- Size: 1.3 MB
- Stars: 4
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# feathers-react-native-chat
A React Native example chat app using Feathers that talks with the [feathers-chat](https://github.com/feathersjs/feathers-chat) server.## Getting Started
1. Make sure you have [NodeJS](https://nodejs.org/) and [npm](https://www.npmjs.com/) installed.
2. Clone down the repository
3. Install react native CLI
```
npm install -g react-native-cli
```4. Install your dependencies
```
cd path/to/feathers-react-native-chat;
```
##### npm
```
npm install
```
##### yarn
```
yarn install
```5. Start the [feathers-chat](https://github.com/feathersjs/feathers-chat) server.
6. Start the iOS app
```
react-native run-ios
```7. Start the Android app
```
react-native run-android
```If you run into issues starting the apps please refer to the [React Native docs](https://facebook.github.io/react-native/docs/getting-started.html). It's most likely a problem with your environment.
## Changelog
__O.1.0__
- Initial release