Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/feathersjs-ecosystem/feathers-react-native-chat
A React Native example chat app using feathers
https://github.com/feathersjs-ecosystem/feathers-react-native-chat
feathersjs mobx react-native
Last synced: 2 months ago
JSON representation
A React Native example chat app using feathers
- Host: GitHub
- URL: https://github.com/feathersjs-ecosystem/feathers-react-native-chat
- Owner: feathersjs-ecosystem
- Archived: true
- Created: 2016-01-22T03:52:21.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-11-02T16:00:43.000Z (about 2 years ago)
- Last Synced: 2024-08-03T18:14:07.009Z (6 months ago)
- Topics: feathersjs, mobx, react-native
- Language: JavaScript
- Size: 1.13 MB
- Stars: 196
- Watchers: 16
- Forks: 46
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-feathersjs - Feathers React Native Chat
README
> __Note:__ All chat frontend examples have been moved to https://github.com/feathersjs/feathers-chat/
# 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