I started working on this app a while ago when I was still learning technologies used in this project, so please be aware that the codebase (and the whole app in general) isn't perfect and there is still room for improvement, even though I've updated the code multiple times over the past years.
So, consider this as a learning example or just a showcase rather than a production-quality code.
Shopping cart app build with MERN stack and using RESTful API design. Responsive front-end design done with Material-UI, uses Redux for state management, Node & Express for API, MongoDB as database. App runs in Docker containers but you can also run each sub-app separately, without Docker.
You can get and view the list of all products from the API, register, add products to cart, remove specific product or empty entire cart, make order...
- React
- Redux
- Redux-Saga
- Material-UI
- Webpack
- TypeScript
- Node/Express
- MongoDB/Mongoose
- Docker
In case you want to run it without Docker (requires additional setup):
- Node.js installed
- MongoDB connection
- Clone repo on your local machine:
$ git clone https://github.com/olaf1005/shopping-cart.git
- Run
docker-compose
$ cd shopping-cart
$ docker-compose up -d
This will pull images and build 3 containers for each part of the application: frontent
, backend
& db
.
- If everything went without problems, go to
localhost:3000
, you should see the running app.
frontend
container (React app) runs on port3000
backend
container (Node api) runs on port5000
db
container (MongoDB server) runs on port27017
Use docker exec -it <container name> bash
to troubleshoot if there are any problems.