https://github.com/varreltantio/crud-react-native
This is a simple React Native application demonstrating CRUD operations with a RESTful API
https://github.com/varreltantio/crud-react-native
crud express mysql react-native
Last synced: 3 months ago
JSON representation
This is a simple React Native application demonstrating CRUD operations with a RESTful API
- Host: GitHub
- URL: https://github.com/varreltantio/crud-react-native
- Owner: varreltantio
- Created: 2025-05-18T12:14:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-23T02:21:17.000Z (about 1 year ago)
- Last Synced: 2025-06-28T06:36:38.539Z (about 1 year ago)
- Topics: crud, express, mysql, react-native
- Language: JavaScript
- Homepage:
- Size: 207 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Native CRUD API Example
This is a simple React Native application demonstrating CRUD (Create, Read, Update, Delete) operations with a RESTful API. The app uses React Native Paper for UI components and React Navigation for navigation between screens.
## Frontend
### 1. Install dependencies:
```
npm install
```
### 2. Set up environment variables:
```
cp .env.example .env
```
### 3. Run the app:
```
npm start
```
## Backend
### 1. Install dependencies:
```
npm install
```
### 2. Set up environment variables:
```
cp .env.example .env
```
### 3. Import Database:
Before running the application, make sure you have imported the react-native-crud.sql database file.
### 4. Run the app:
```
node index.js
```