https://github.com/bezkoder/react-redux-axios-crud
React Redux CRUD App example with Axios to consume Rest API - React Router & Bootstrap.
https://github.com/bezkoder/react-redux-axios-crud
axios crud crud-application crud-sample react react-redux reactjs redux redux-thunk
Last synced: 2 months ago
JSON representation
React Redux CRUD App example with Axios to consume Rest API - React Router & Bootstrap.
- Host: GitHub
- URL: https://github.com/bezkoder/react-redux-axios-crud
- Owner: bezkoder
- Created: 2021-04-03T09:42:01.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-04T09:37:36.000Z (about 4 years ago)
- Last Synced: 2025-03-28T10:47:35.336Z (3 months ago)
- Topics: axios, crud, crud-application, crud-sample, react, react-redux, reactjs, redux, redux-thunk
- Language: JavaScript
- Homepage:
- Size: 387 KB
- Stars: 68
- Watchers: 4
- Forks: 46
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Redux CRUD App example with Axios and Rest API
Build a React Redux CRUD Application to consume Web API using Axios, display and modify data with Router & Bootstrap.
React Redux Tutorial Application in that:
- Each Tutorial has id, title, description, published status.
- We can create, retrieve, update, delete Tutorials.
- There is a Search bar for finding Tutorials by title.
For instruction, please visit:
> [React Redux CRUD App example with Rest API](https://bezkoder.com/react-redux-crud-example/)Related Posts:
> [React (without Redux) CRUD example to consume Web API](https://bezkoder.com/react-crud-web-api/)> [React (Hooks) CRUD example to consume Web API](https://bezkoder.com/react-hooks-crud-axios-api/)
> [React Table example: CRUD App with react-table v7](https://bezkoder.com/react-table-example-hooks-crud/)
Using Material UI instead of Bootstrap:
> [React Material UI examples with a CRUD Application](https://bezkoder.com/react-material-ui-examples-crud/)More Practice:
> [React Pagination example](https://bezkoder.com/react-pagination-material-ui/)> [React File Upload example](https://bezkoder.com/react-file-upload-axios/)
> [React JWT Authentication & Authorization example](https://bezkoder.com/react-jwt-auth/)
> [React + Redux: JWT Authentication & Authorization example](https://bezkoder.com/react-redux-jwt-auth/)
Fullstack with Node.js Express:
> [React.js + Node.js Express + MySQL](https://bezkoder.com/react-node-express-mysql/)> [React.js + Node.js Express + PostgreSQL](https://bezkoder.com/react-node-express-postgresql/)
> [React.js + Node.js Express + MongoDB](https://bezkoder.com/react-node-express-mongodb-mern-stack/)
Fullstack with Spring Boot:
> [React.js + Spring Boot + MySQL](https://bezkoder.com/react-spring-boot-crud/)> [React.js + Spring Boot + PostgreSQL](https://bezkoder.com/spring-boot-react-postgresql/)
> [React.js + Spring Boot + MongoDB](https://bezkoder.com/react-spring-boot-mongodb/)
Fullstack with Django:
> [React.js + Django Rest Framework](https://bezkoder.com/django-react-axios-rest-framework/)
Serverless:
> [React Firebase CRUD App with Realtime Database](https://bezkoder.com/react-firebase-crud/)> [React Firestore CRUD App example | Firebase Cloud Firestore](https://bezkoder.com/react-firestore-crud/)
Integration (run back-end & front-end on same server/port)
> [How to integrate React.js with Spring Boot](https://bezkoder.com/integrate-reactjs-spring-boot/)> [Integrate React with Node.js Express on same Server/Port](https://bezkoder.com/integrate-react-express-same-server-port/)
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
### Set port
.env
```
PORT=8081
```## Project setup
In the project directory, you can run:
```
npm install
# or
yarn install
```or
### Compiles and hot-reloads for development
```
npm start
# or
yarn start
```Open [http://localhost:8081](http://localhost:8081) to view it in the browser.
The page will reload if you make edits.