@mainframe/rpc-browser

RPC for browser

Usage no npm install needed!

<script type="module">
  import mainframeRpcBrowser from 'https://cdn.skypack.dev/@mainframe/rpc-browser';
</script>

README

rpc-browser

rpc-request or rpc-stream factory with automatic transport selection.

Installation

yarn add @mainframe/rpc-browser

Usage

import browserRPC from '@mainframe/rpc-browser'

const rpcOverHTTP = browserRPC('http://localhost') // RequestRPC using HTTP transport
const rpcOverWS = browserRPC('ws://localhost') // StreamRPC using WebSocket transport

API

browserRPC()

Arguments

  1. endpoint: string: HTTP or WebSocket URL to connect to.

Returns RequestRPC (with HTTP endpoint) or StreamRPC (with WebSocket endpoint).

License

MIT