Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ondiekelijah/e-commerce-microservice
A Node.js and Express.js-powered ecommerce Microservice application. To connect the various services, RabbitMQ is used.
https://github.com/ondiekelijah/e-commerce-microservice
bcrypt expressjs jwt-authentication mongoose nodejs rabbitmq
Last synced: about 2 months ago
JSON representation
A Node.js and Express.js-powered ecommerce Microservice application. To connect the various services, RabbitMQ is used.
- Host: GitHub
- URL: https://github.com/ondiekelijah/e-commerce-microservice
- Owner: ondiekelijah
- Created: 2022-07-28T11:09:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-25T06:07:01.000Z (over 2 years ago)
- Last Synced: 2023-03-10T18:33:08.092Z (almost 2 years ago)
- Topics: bcrypt, expressjs, jwt-authentication, mongoose, nodejs, rabbitmq
- Language: JavaScript
- Homepage:
- Size: 79.1 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# E-commerce-Microservice
A Node.js and Express.js-powered ecommerce Microservice application. To connect the various services, RabbitMQ is used.## Clone project
```bash
git clone https://github.com/Dev-Elie/E-commerce-Microservice.git
cd E-commerce-Microservice
```## Install packages for all services
```bash
cd auth-service && npm install
cd product-service && npm install
cd order-service && npm install
```
Install packages for the `Auth middleware`, in the root of the project run:`npm install`
To run RabbitMQ, execute:
`docker run -p 5672:5672 rabbitmq`
## NOTE: RabbitMQ must be up and running before starting the services.
To run each service, execute:
`npm run dev`
Have fun learning about Microservices.