MERN CRUD APPLICATION
Instructions to Run this project
- Download or clone it to your local PC.
- To run this project you should have
- node
- express
- mongoose
- cors
- yarn
- Axios
- Both the client and server need to run separately on different terminals.
- Install dependencies for server, open up your terminal or Shell:
cd server
npm install
nodemon start
- Install dependencies for client, open up new terminal or Shell
cd client
yarn install
yarn start
- Server will be running at port
3001
and client will be running at port3000