https://github.com/rnback/rnback
This repo is for bug reports and feature requests. Feel free to open an issue.
https://github.com/rnback/rnback
android baas backend backend-services ios mbaas mobile mobile-development react react-native react-native-app reactnative
Last synced: 7 months ago
JSON representation
This repo is for bug reports and feature requests. Feel free to open an issue.
- Host: GitHub
- URL: https://github.com/rnback/rnback
- Owner: rnback
- Created: 2017-06-08T18:03:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-19T09:10:02.000Z (almost 8 years ago)
- Last Synced: 2025-02-10T10:42:17.569Z (8 months ago)
- Topics: android, baas, backend, backend-services, ios, mbaas, mobile, mobile-development, react, react-native, react-native-app, reactnative
- Homepage: https://rnback.com/
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rnback
Rnback is a __backend service__ for react-native applications.
To learn more, head to [https://rnback.com](https://rnback.com)
-----------------------
# rnback sdk
## Install
1. Create a react-native project: (If you don't already have one)
```bash
react-native init MyProject && cd MyProject
```2. Install the sdk:
```bash
npm install --save rnback
```3. Add key from the dashboard https://dashboard.rnback.com/ :
```bash
node ./node_modules/rnback/cli/ setkey ""
```
* NOTE: It's important to do this step before the following.4. Link library
```bash
react-native link rnback
```5. Done! you can now use the sdk in your app
```javascript
import {authenticate} from 'rnback';
authenticate()
.then(() => console.log('yay!'))
.catch((err) => console.log('boo', err));
```---