https://github.com/iamyourdre/first-fullstack-js-crud
CRUD with Node JS, Express, React JS, and MySQL
https://github.com/iamyourdre/first-fullstack-js-crud
crud express fullstack fullstack-javascript mysql nodejs react reactjs
Last synced: 14 days ago
JSON representation
CRUD with Node JS, Express, React JS, and MySQL
- Host: GitHub
- URL: https://github.com/iamyourdre/first-fullstack-js-crud
- Owner: iamyourdre
- Created: 2023-05-19T11:03:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-20T10:41:06.000Z (over 2 years ago)
- Last Synced: 2025-02-14T21:33:03.580Z (11 months ago)
- Topics: crud, express, fullstack, fullstack-javascript, mysql, nodejs, react, reactjs
- Language: JavaScript
- Homepage:
- Size: 326 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## My First Fullstack JS CRUD
### With Node JS, Express, React JS, and MySQL
### Backend Prerequisite:
1. Move to `cd backend`
2. Run `npm i express mysql2 sequelize cors`
3. Check `nodemon -v`. If you have not installed yet, run `npm i -g nodemon`
4. Start backend server with `nodemon index` (Recheck your folder path, it must be on 'your-project/backend' folder)
### Frontend Prerequisite:
1. Run `npx create-react-app frontend`
2. Run `npm i react-router-dom axios `
3. Move to `cd frontend`
4. Run `npm install bootstrap@5.2.3`
5. Start frontend server with `npm start` (Recheck your folder path, it must be on 'your-project/frontend' folder)