@erebos/rpc-request
v0.11.0
Published
Request-based RPC
Downloads
9
Keywords
Readme
rpc-request
Class extending rpc-base
to handle stateless JSON-RPC 2.0 calls.
See transport-create-http
, transport-http-browser
and transport-http-node
for possible transports and rpc-stream
to handle stateful JSON-RPC 2.0 calls.
Installation
yarn add @erebos/rpc-request
Usage
import RequestRPC from '@erebos/rpc-request'
import httpTransport from '@erebos/transport-http-node'
class MyAPI extends RequestRPC {
constructor(url: string) {
super(httpTransport(url))
}
getUser(id: string): Promise<{ name: string }> {
return this.request('getUser', [id])
}
}
const api = new MyAPI('http://my-api-url')
api.getUser('1234')
Types
type FetchFunction = <D = any, R = any>(data: D) => Promise<R>
API
See the BaseRPC
API for inherited methods and properties.
new RequestRPC()
Arguments
fetch: FetchFunction
: function making the server call using the JSON-RPC request Object and returning the response.
.request()
Arguments
method: string
params: T = any
Returns Promise<R = any>
License
MIT