fullstorydev / fullstorydev/grpcurl
Feature request: get ".proto" file from URI
- Dominant language
- Go
- Stars
- 12.8k
- Forks
- 580
- Avg merge
- 1h 8m
- Merged PRs (30d)
- 5
Description
Often I find myself downloading a `.proto` file from the webz just to pass it to `grpcurl`, I know I can easily script it out but could probably be nice to have it as a grpcurl feature.
Example:
old workflow:
```
wget --continue https://raw.githubusercontent.com/grpc/grpc/master/src/proto/grpc/health/v1/health.proto
grpcurl -proto health.proto -plaintext 127.0.0.1:8080 grpc.health.v1.Health/Watch
```
new workflow
```
grpcurl -proto https://raw.githubusercontent.com/grpc/grpc/master/src/proto/grpc/health/v1/health.proto -plaintext 127.0.0.1:8080 grpc.health.v1.Health/Watch
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.