this my final project for the node portion of the full stack course.I created the backend with node and express and the front end with react.
- clone the repo
git clone
- create a .env file in the backend folder and add the following
JWT_SECRET=your_secret
FRONTEND_URL=youre_frontend_url
MongoDB_URI=your_mongoDB_uri
- install and run the backend
cd backend
npm install
npm run dev
- install and run the frontend
cd frontend
npm install
npm run dev