@noveo/dual-rpc-ws

Remote procedure call

Usage no npm install needed!

<script type="module">
  import noveoDualRpcWs from 'https://cdn.skypack.dev/@noveo/dual-rpc-ws';
</script>

README

Dual rpc via websockets

Tests Test Coverage

This library helps to organize the remote methods calls via websockets in both directions: from the server to the client and vice versa.

Docs: https://agsh.github.io/rpc

The project splits into two parts:

Clent-side class Client

Can be imported from the @noveo/dual-rpc-ws/client

import Client from '@noveo/dual-rpc-ws/client';

Documentation for it can be found here: https://agsh.github.io/rpc/classes/client.html

Server-side class Server

Can be imported from the @noveo/dual-rpc-ws/server

import Server from '@noveo/dual-rpc-ws/server';
// or
import { Server } from '@noveo/dual-rpc-ws';

Documentation for it can be found here: https://agsh.github.io/rpc/classes/server.html