My first Full Stack CRUD application using React, Node, Express, Axios and SQL (MySQL):
It's a basic page where you can create, read, update and delete movie reviews.
-
Clone repo
-
Change to directory
cd mrca-crud
cd client
- Install dependencies and start front-end
npm install
npm start
- Change directory to server
cd ..
cd server
- Install dependencies and start back-end
npm install
npm start
OBS: The MySQL database needs to be with: host: "localhost", user: "root", password: "system", database: "cruddb".
Credits: development based on this tutorial series.