Skip to content

stepci/cool-grpc

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 

cool-grpc

Simple, stupid gRPC client for Node written in Typescript

Features

  • Easy to use (inspired by fetch and got)
  • Loading multiple .proto files
  • Automatic message encoding/decoding
  • Unary calls
  • Client streaming
  • Server streaming
  • Hooks

Get Started

npm i cool-grpc
import { makeRequest } from 'cool-grpc'

const protos = ['./helloworld.proto']

makeRequest(protos, {
  host: '0.0.0.0:50051',
  service: 'helloworld.Greeter',
  method: 'SayHello',
  metadata: {},
  data: {
    name: 'world'
  },
  tls: {
    rootCerts: "",
    privateKey: "",
    certChain: ""
  },
  beforeRequest: (req) => {},
  afterResponse: (res) => {}
})
.then(console.log)
.catch(console.error)

About

Make gRPC cool again!

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published