Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.07 KB

README.md

File metadata and controls

24 lines (18 loc) · 1.07 KB

Simple examples of how to use grpc-dart

  • unary_greet

    • An example of Unary RPCs similar to the official helloworld but with more info exchanged
      Screencast of unary_greet
  • bidi_calc

    • An example of Bidirectional streaming RPCs
      Screencast of bidi_calc
  • bidi_chat

    • An example of broadcast from a server to multiple clients by Bidirectional streaming RPCs
    • A nickname needs to be provided when you run bin/client.dart.
      Screencast of bidi_chat
  • web

    • An example of unary_greet using gRPC-Web via grpc-dart.
    • A proxy to a server is necessary. See README of the sample.
      Screencast of web

Related articles