Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 798 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 798 Bytes

grpc-nvim

A GRPC client built using grpcurl.

Example


Install

Dependencies

Using packer.nvim

use {
  "hudclark/grpc-nvim",
  requires = { "nvim-lua/plenary.nvim" }
}

Usage

Place your cursor over a valid GRPC request, then :Grpc. Results will be shown in a split.

Valid GRPC requests are blocks that start with the pattern ^grpc . Some examples are as follows:

// Describe the server via reflection
grpc localhost:50051 list

// Send a request over plaintext.
grpc --plaintext localhost:50051 helloworld.Greeter/SayHello
{
  "name": "Hudclark"
}