Simple CRUD (Create, Read, Update, and Delete), a project used as a reference.
- Language: TypeScript
- Back-end: Node
- Database: MongoDB
- Front-end: React
This repo contains 2 projects (backend and frontend), and you need to install all dependencies from each one, so enter in each folder project and run:
# /simple-crud-typescript-node-react-mongo/backend
npm i
# /simple-crud-typescript-node-react-mongo/frontend
npm i
Remember, the backend uses MongoDB to store data, so you will need him installed and executing. After that, we just need to run the backend and frontend, and the React will open the application on your browser.
# /simple-crud-typescript-node-react-mongo/backend
npm run dev
# /simple-crud-typescript-node-react-mongo/frontend
npm start