HTTP RPC for browser
npm install @mainframe/rpc-http-browserrpc-request factory using transport-http-browser.
``sh`
yarn add @mainframe/rpc-http-browser
`js
import httpRPC from '@mainframe/rpc-http-browser'
const rpc = httpRPC('http://localhost')
rpc.request('getUser', ['1234']).then(console.log)
`
Arguments
1. url: string
Returns RequestRPC`
MIT