0.11.0 • Published 6 years ago
@erebos/rpc-request v0.11.0
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-requestUsage
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: stringparams: T = any
Returns Promise<R = any>
License
MIT