0.3.0 • Published 6 years ago

@mainframe/rpc-browser v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

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