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
- Host: GitHub
- URL: https://github.com/twrayden/ts-grpc-server-template
- Owner: twrayden
- License: mit
- Created: 2022-04-15T08:34:35.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-18T07:13:44.000Z (almost 4 years ago)
- Last Synced: 2025-06-10T15:40:43.328Z (10 months ago)
- Topics: boilerplate, grpc, starter-project, template-repository, typescript
- Language: TypeScript
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
> - ...