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

https://github.com/twrayden/ts-grpc-server-template

My personal starting point for TypeScript gRPC projects
https://github.com/twrayden/ts-grpc-server-template

boilerplate grpc starter-project template-repository typescript

Last synced: 9 months ago
JSON representation

My personal starting point for TypeScript gRPC projects

Awesome Lists containing this project

README

          

# typescript-grpc-starter

My personal starting point for TypeScript gRPC projects.

## Highlights

- Simple, flexible, and tidy with sensible defaults
- Pure TypeScript
- Separate publishable package with protobuf TypeScript types & definitions for server & client (using [protobuf-ts](https://github.com/timostamm/protobuf-ts))

## FAQ

#### Why have a separate package for protobuf files?

This is so that you can publish your protobuf types & definitions to a package registry, this allows your gRPC clients to install and use the exact same types as the server.

## Getting Started

> TODO:
> - Quick breakdown on how everything is setup (important things to know)
> - Where & what code to change if using template
> - ...