Forked from https://github.com/fabriciobastian/jsonrpc-client-websocket
const websocketUrl = 'ws://mywebsocketurl:port';
const requestTimeoutMs = 2000;
const websocket = new JsonRpcWebsocket(websocketUrl, requestTimeoutMs, (error: JsonRpcError) => {
/* handle error */
});
await websocket.open();
Requests that do not receive a response within the specified timeout will fail with a REQUEST_TIMEOUT code. The callback (optional) is used for eventual errors, such as receiving a response that does not match any request id and connection errors. Furthermore, all errors that are sent to an eventual caller are also reported on the callback, e.g. if an rpc method is called with an invalid number of parameters, etc...
await websocket.close();
Considering that the server has a method sum(a: int, b: int)
websocket
.call('sum', [1, 2])
.then((response) => {
// handle response
})
.catch((error) => {
// handle error
});
websocket
.call('sum', { b: 1, a: 2 })
.then((response) => {
// handle response
})
.catch((error) => {
// handle error
});
Considering that the server has a method log(message: string)
websocket.notify('log', ['a log message']);
websocket.on('sum', (a: number, b: number) => {
return a + b;
});
The defined RPC methods can also be called with both positional and named parameters.
websocket.off('sum');