GithubHelp home page GithubHelp logo

desi-ivanov / bidix Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 55 KB

An inter-process communication middleware for simplified bidirectional callbacks management, fully typed

License: MIT License

TypeScript 100.00%

bidix's Introduction

bidix

An inter-process communication middleware for simplified bidirectional callbacks management, fully typed.

WebSocket example

Check examples/websocket for more details.

Server

import Websocket, { WebSocketServer } from "ws";
import { Middleware } from "bidix";

const wss = new WebSocketServer({ port: 8080 });

const handlers = {
  add: async (a: number, b: number) => a + b,
  sub: async (a: number, b: number) => a - b,
  callbackExample: async (a: number, onRes: (b: number) => void) => {
    setTimeout(() => onRes(a ** 2), 1000);
  },
  subscribeToNotifications: async (onNotification: (a: number) => void) => {
    setInterval(() => onNotification(Math.random()), 1000);
  },
};
export type H = typeof handlers;

wss.on("connection", (ws: Websocket) => {
  new Middleware(
    {
      send: (data) => ws.send(data),
      onMessage: (callback) => ws.on("message", callback),
    },
    handlers
  );
});

Client

import Websocket from "ws";
import { Consumer } from "bidix";
import type { H } from "./server";

const ws = new Websocket("ws://localhost:8080");

ws.on("open", () => {
  const middleware = Consumer<H>({
    send: (data) => ws.send(data),
    onMessage: (callback) => ws.on("message", callback),
  });

  middleware.add(1, 2).then((r) => console.log("Add res", r));
  middleware.sub(1, 2).then((r) => console.log("Sub res", r));
  middleware.callbackExample(7, (r) => console.log("Callback example", r));
  middleware.subscribeToNotifications((r) => console.log("Got Notification", r));
});

// Output:
// Add res 3
// Sub res -1
// Callback example 49
// Got Notification 0.7296933890679862
// Got Notification 0.3961023227141208
// Got Notification 0.7218411908449844
// ...

License

MIT

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.