This project was created for the Shopify Backend Intern Challenge Summer 2022
Currently Unavailable
MERN: MongoDB, Express, Node.js, React
- Basic CRUD (Creact, Read, Update, Delete) operations on Inventory Items
- Inventory Items can be packaged into a shipment package to be shipped out, reducing the inventory count of the items shipped out
- New shipments could come in as well, increasing the inventory count of the items shipped in
git clone
the repository- run
yarn
to install all dependencies - connect to your own MongoDB cluster by assigning your own connection string to the uri variable at config/db.js -> uri
- run
yarn start
to start the backend server - open up another terminal and run
cd client && yarn start
to start up the React frontend