https://github.com/bezkoder/redux-toolkit-example-crud
Redux-Toolkit example with CRUD Application, Axios, Bootstrap, and Rest API
https://github.com/bezkoder/redux-toolkit-example-crud
axios bootstrap bootstrap4 crud crud-application crud-operation crud-sample react react-redux reactjs redux redux-toolkit
Last synced: about 1 year ago
JSON representation
Redux-Toolkit example with CRUD Application, Axios, Bootstrap, and Rest API
- Host: GitHub
- URL: https://github.com/bezkoder/redux-toolkit-example-crud
- Owner: bezkoder
- Created: 2021-09-22T07:40:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-29T10:02:32.000Z (over 3 years ago)
- Last Synced: 2025-03-28T10:47:34.020Z (about 1 year ago)
- Topics: axios, bootstrap, bootstrap4, crud, crud-application, crud-operation, crud-sample, react, react-redux, reactjs, redux, redux-toolkit
- Language: JavaScript
- Homepage:
- Size: 347 KB
- Stars: 28
- Watchers: 2
- Forks: 22
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Redux Toolkit example by CRUD App, Axios and Rest API
Build a Redux Toolkit CRUD Application to consume Web API using Axios, display and modify data with Router & Bootstrap.
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:
> [Redux Toolkit example with CRUD Application](https://www.bezkoder.com/redux-toolkit-example-crud/)
> [Redux Toolkit example with CRUD Application (using Hooks)](https://www.bezkoder.com/redux-toolkit-crud-react-hooks/)
Related Posts:
> [React Redux CRUD App example with Rest API (without toolkit)](https://www.bezkoder.com/react-redux-crud-example/)
> [React (without Redux) CRUD example to consume Web API](https://www.bezkoder.com/react-crud-web-api/)
> [React (Hooks) CRUD example to consume Web API](https://www.bezkoder.com/react-hooks-crud-axios-api/)
> [React Table example: CRUD App with react-table v7](https://www.bezkoder.com/react-table-example-hooks-crud/)
Using Material UI instead of Bootstrap:
> [React Material UI examples with a CRUD Application](https://www.bezkoder.com/react-material-ui-examples-crud/)
More Practice:
> [React Pagination example](https://www.bezkoder.com/react-pagination-material-ui/)
> [React File Upload example](https://www.bezkoder.com/react-file-upload-axios/)
> [React JWT Authentication & Authorization example](https://www.bezkoder.com/react-jwt-auth/)
> [React + Redux: JWT Authentication & Authorization example](https://www.bezkoder.com/react-redux-jwt-auth/)
Fullstack with Node.js Express:
> [React.js + Node.js Express + MySQL](https://www.bezkoder.com/react-node-express-mysql/)
> [React.js + Node.js Express + PostgreSQL](https://www.bezkoder.com/react-node-express-postgresql/)
> [React.js + Node.js Express + MongoDB](https://www.bezkoder.com/react-node-express-mongodb-mern-stack/)
Fullstack with Spring Boot:
> [React.js + Spring Boot + MySQL](https://www.bezkoder.com/react-spring-boot-crud/)
> [React.js + Spring Boot + PostgreSQL](https://www.bezkoder.com/spring-boot-react-postgresql/)
> [React.js + Spring Boot + MongoDB](https://www.bezkoder.com/react-spring-boot-mongodb/)
Fullstack with Django:
> [React.js + Django Rest Framework](https://www.bezkoder.com/django-react-axios-rest-framework/)
Serverless:
> [React Firebase CRUD App with Realtime Database](https://www.bezkoder.com/react-firebase-crud/)
> [React Firestore CRUD App example | Firebase Cloud Firestore](https://www.bezkoder.com/react-firestore-crud/)
Integration (run back-end & front-end on same server/port)
> [Integrate React with Spring Boot](https://www.bezkoder.com/integrate-reactjs-spring-boot/)
> [Integrate React with Node.js Express](https://www.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.