Skip to content

Latest commit

 

History

History

README.md

TypeScript gRPC Client Example

This example demonstrates a simple gRPC client in TypeScript that connects to the stream server.

Prerequisites

  • Node.js
  • npm

Running the client

  1. Install the dependencies:

    npm install
  2. Build the client and compile protobufs:

    npm run build
  3. Run the client:

    npm run start

Alternatively, you can run the client in development mode without a separate build step:

npm run dev