@mainframe/rpc-browser
v0.3.0
Published
RPC for browser
Keywords
Readme
rpc-browser
rpc-request or rpc-stream factory with automatic transport selection.
Installation
yarn add @mainframe/rpc-browserUsage
import browserRPC from '@mainframe/rpc-browser'
const rpcOverHTTP = browserRPC('http://localhost') // RequestRPC using HTTP transport
const rpcOverWS = browserRPC('ws://localhost') // StreamRPC using WebSocket transportAPI
browserRPC()
Arguments
endpoint: string: HTTP or WebSocket URL to connect to.
Returns RequestRPC (with HTTP endpoint) or StreamRPC (with WebSocket endpoint).
License
MIT
