An open API service indexing awesome lists of open source software.

https://github.com/samthetechi/grpctodo


https://github.com/samthetechi/grpctodo

Last synced: about 1 year ago
JSON representation

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 ♥️.