https://github.com/devinceble/books
Books - A repository for Introduction to cross platform native mobile app using React Native. API: https://goo.gl/dcJszC
https://github.com/devinceble/books
react-native react-native-app tutorial tutorials
Last synced: 3 months ago
JSON representation
Books - A repository for Introduction to cross platform native mobile app using React Native. API: https://goo.gl/dcJszC
- Host: GitHub
- URL: https://github.com/devinceble/books
- Owner: devinceble
- Created: 2017-12-18T04:53:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-27T15:20:32.000Z (about 8 years ago)
- Last Synced: 2025-02-24T01:15:44.087Z (11 months ago)
- Topics: react-native, react-native-app, tutorial, tutorials
- Language: JavaScript
- Homepage:
- Size: 213 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Introduction to cross platform native mobile app using React Native
*** Source Code: https://git.io/vbiLi ***
### Creating Books React Native Project
Objectives:
[X] 1. Create a React-Native Project using create-react-native-app tool
[ ] 2. Create a static View for a List of Books.
[ ] 3. Create a method to Get List of Books via REST.
[ ] 4. Create a method to Create a Book via REST.
[ ] 5. Create a method to Edit a Book via REST.
[ ] 6. Create a method to Delete a Book via REST.
[ ] ...
---
## Part I - Create a React-Native Project
---
### I. Install create-react-native-app npm package
```bash
# Using NPM
$ npm install -g create-react-native-app
# Using YARN
$ yarn global add create-react-native-app
```
---
### II. Create your first React-Native Project
```bash
# Using create-react-native-app
$ create-react-native-app Books # replace Books with your Project Name
```
---
### III. Install Exponents App on your phone.
https://expo.io/tools
---
### IV. Running Local Development Server
```bash
# Using NPM
$ npm start
# Using YARN
$ yarn start
```
---