grpcurl
Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers
File Explorer
Download Latest Version (.zip)- config.yml
- codesee-arch-diagram.yml
- dependabot.yml
- grpcurl.go
- indent_test.go
- unix.go
- auth.go
- bank.go
- bank.pb.go
- bank.proto
- bank_grpc.pb.go
- chat.go
- db.go
- main.go
- README.md
- support.pb.go
- support.proto
- support_grpc.pb.go
- README.md
- testserver.go
- unix.go
- test_objects.pb.go
- test_objects.proto
- ca.crl
- ca.crt
- ca.key
- client.crt
- client.csr
- client.key
- expired.crt
- expired.csr
- expired.key
- other.crt
- other.csr
- other.key
- server.crt
- server.csr
- server.key
- wrong-ca.crl
- wrong-ca.crt
- wrong-ca.key
- wrong-client.crt
- wrong-client.csr
- wrong-client.key
- example.proto
- example.protoset
- example2.proto
- test.pb.go
- test.proto
- test.protoset
- test_grpc.pb.go
- test_server.go
- do-release.sh
- README.md
- RELEASE_NOTES.md
- README.md
- snapcraft.yaml
- .gitignore
- .goreleaser.yml
- desc_source.go
- desc_source_test.go
- Dockerfile
- download_protoc.sh
- format.go
- format_test.go
- go.mod
- go.sum
- grpcurl.go
- grpcurl_test.go
- invoke.go
- LICENSE
- Makefile
- mk-test-files.sh
- README.md
- tls_settings_test.go
# Installation Guide
git clone https://github.com/fullstorydev/grpcurl
Downloads the entire project code from GitHub to your computer.
cd grpcurl
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommendedbrew install grpcurl
Installs the pre-built package via Homebrew β no source build required.
go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
Downloads and installs the specified version directly β no need to clone the repo yourself.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker pull fullstorydev/grpcurl:latest
Type this command into your terminal and run it.
docker run fullstorydev/grpcurl api.grpc.me:443 list
Runs the built image as an actual container.
Pulled directly from this repo's README.
4. Go
Mediumgo install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
Downloads and installs the specified version directly β no need to clone the repo yourself.
Pulled directly from this repo's README.
5. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
