manga-app 2/
├── backend/
│ ├── index.js
│ └── package.json
├── frontend/
│ ├── public/
│ │ └── index.html
│ ├── src/
│ │ ├── App.js
│ │ └── index.js
│ └── package.json
└── README.md
- Open a terminal in the
backendfolder. - Run
npm installto install dependencies. - Run
npm startto start the server (default: http://localhost:4000).
- Open a terminal in the
frontendfolder. - Run
npm installto install dependencies. - Run
npm startto start the React app (default: http://localhost:3000).
- Open http://localhost:3000 in your browser.
- You should see a message from the backend.
- Build out CRUD endpoints in the backend.
- Add manga management features to the frontend.
- Follow your PRD for more features!