https://github.com/ramirezmz/basic-crud
Crud App in Front end with React
https://github.com/ramirezmz/basic-crud
bootstrap reactjs redux
Last synced: 3 months ago
JSON representation
Crud App in Front end with React
- Host: GitHub
- URL: https://github.com/ramirezmz/basic-crud
- Owner: ramirezmz
- Created: 2022-10-24T17:28:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-25T14:36:23.000Z (over 3 years ago)
- Last Synced: 2025-03-16T17:43:22.711Z (over 1 year ago)
- Topics: bootstrap, reactjs, redux
- Language: JavaScript
- Homepage: https://basic-crud-lac.vercel.app/
- Size: 516 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic CRUD
It's about CRUD, for those who dont't know CRUD is the composition of the first letter of 4 basic functions of a system that works with a database.
- C = Create
- R = Read
- U = Update
- D = Delete
## How to run the project?
1. Clone the repo
2. Install dependencies
```
npm install
// or
yarn
```
3. Run the project
```
npm start
```
## Ingredients
- ReactJS
- React Bootstrap
- Redux
## Project Structure
```
$PROJECT_ROOT
└── cypress
└── src
├── components # UI components
├── pages # Pages of the project
├── utils # Redux config + data
└── App.vue # Root component
└── main.ts # Entry point
```