GithubHelp home page GithubHelp logo

bidi-rpc's Introduction

Bi-Directional RPC

I found myself needing to wrap different types of websockets. I found some wrappers for websocket RPC, but they were unidirectional. This library aims to make it very easy to define and implement websocket RPC.

The main reason I wanted this was for WebRTC, but I've found other uses for it.

Server ping method

const server = new WebSocket('ws://some-url/');
// Define handlers for incoming messages
const serverRpc = makeSocketRpc(ws, {
  ping: () => 'pong',
});

const client = new WebSocket('ws://some-url/');
// Define types of messages that the server can handle
const clientRpc = makeSocketRpc<{
  ping: () => string;
}>(ws);

// Make the call
const result = await clientRpc.ping();
console.log(result); // 'pong'

// ------------------------------------------------------------

// You can define both sides of the RPC at the same time
const rpc = makeSocketRpc<{
  // Type definitions for the server
  bin(): string;
}>(ws, {
  // Handlers for the client
  foo: () => 'bar',
});

rpc.bin();
// ...and server can call foo()

bidi-rpc's People

Contributors

dependabot[bot] avatar tarwich avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.