An open API service indexing awesome lists of open source software.

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

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)