https://github.com/samthetechi/grpctodo
https://github.com/samthetechi/grpctodo
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/samthetechi/grpctodo
- Owner: SamTheTechi
- Created: 2025-04-03T19:25:57.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-06T20:17:08.000Z (about 1 year ago)
- Last Synced: 2025-04-06T21:24:12.044Z (about 1 year ago)
- Language: TypeScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gRPC Todo App
This is a simple gRPC based client server cli todo learning project demonstrating how use gRPC connections
---
## Project Structure
```
.
├── proto
│ └── todo.proto # proto definition
├── index.ts # gRPC Server
├── client.ts # CLI gRPC client
├── package.json
└── README.md
```
---
## Getting Started
### 1. Clone Repository
``` bash
git clone https://github.com/SamTheTechi/gRPCTodo.git
```
### 2. Install dependencies
``` bash
cd gRPCTodo; bun install
```
### 3. Start the gRPC Server
``` bash
bun run index.ts
```
### 4. Run the Client CLI
``` bash
bun run client.ts
```
---
## Author
Made with curiosity and some sprinkles of love ♥️.