Popularity
9.5
Stable
Activity
2.2
-
8,900
73
439

Programming language: TypeScript
License: GNU Lesser General Public License v3.0 only
Tags: Rpc    

BloomRPC alternatives and similar packages

Based on the "RPC" category.
Alternatively, view bloomrpc alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of BloomRPC or a related project?

Add another 'RPC' Package

README

BloomRPC

The missing GUI Client for GRPC services. 🌸

Inspired by Postman and GraphQL Playground BloomRPC aims to provide the simplest and most efficient developer experience for exploring and querying your GRPC services.

Install the client, select your protobuf files and start making requests! No extra steps or configuration needed.

Features

  • Native GRPC calls
  • Unary calls
  • Server, client, and bidrectional streaming
  • Input feedback
  • Multi-tab operations
  • Metadata support
  • Workspace persistence
  • Request cancellation
  • Many more!

Shortcuts

Ctrl-w/Command-w: Closes the tab.

Esc: Focuses on the editor.

Ctrl-Enter/Command-Enter: Ends the request.

GRPC Web

GRPC Web is now supported! Just flip the toggle from GRPC to WEB.

Note on https:

  • add https to the url, note for GRPC-Web it also supports path, e.g. https://example.com/grpcweb/v1
  • or turn on "TLS" -> Server certificate (default port will change to 443)
  • self-signed certificate not supported at the moment

When the GRPC toggle is grey, it means to use the vanilla GRPC binary protocol. The address input should be the host:port. You can't include path in this mode.

When it's toggled to WEB, it uses GRPC-WEB protocol. The address input can be an URL or the address (host:port), so you can include the scheme, host, port and path.

Installation

Windows, macOS, and Linux are supported.

To download the installer, go to the Releases Page.

Alternatively, package managers can be used.

macOS/Homebrew

brew install --cask bloomrpc

Windows/Chocolatey

choco install bloomrpc

To build from source:

git clone https://github.com/uw-labs/bloomrpc.git
cd bloomrpc

yarn install && ./node_modules/.bin/electron-rebuild
npm run package

The installer will be located in the release folder.

Preview

Contributing

CONTRIBUTING.md coming soon!

Development Mode

Run the two commands below in separate terminals:

npm run start-server-dev
npm run start-main-dev

Acknowledgements