https://github.com/ndmen/grpc-filtering-service
NestJS microservices to demonstrate basic GRPC communication.
https://github.com/ndmen/grpc-filtering-service
grpc microservices nestjs
Last synced: about 1 month ago
JSON representation
NestJS microservices to demonstrate basic GRPC communication.
- Host: GitHub
- URL: https://github.com/ndmen/grpc-filtering-service
- Owner: ndmen
- Created: 2025-01-02T12:23:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-02T19:01:06.000Z (over 1 year ago)
- Last Synced: 2025-03-02T06:45:00.130Z (over 1 year ago)
- Topics: grpc, microservices, nestjs
- Language: TypeScript
- Homepage:
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
NestJS microservices to demonstrate basic GRPC communication.
## Instructions:
### 1. Clone the repository.
### 2. Run the services:
```bash
docker-compose up --build
```
The Consumer service will log the filtered users:
```bash
Filtered Users: [
{ "id": 1, "name": "Alice", "age": 25 },
{ "id": 3, "name": "Charlie", "age": 30 }
]
```
