Socket
Socket
Sign inDemoInstall

dho-rpc-transport-webworker

Package Overview
Dependencies
14
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dho-rpc-transport-webworker

Easy way to communicate with webworker using dho-rpc (JSON RPC library)


Version published
Weekly downloads
31
increased by106.67%
Maintainers
1
Install size
1.07 MB
Created
Weekly downloads
 

Readme

Source

Webworker Transport for Mole RPC (JSON RPC Library)

npm version Build Status Known Vulnerabilities

Offload intensive calculations to WebWorker with just several lines of code.

dho-rpc is a tiny transport agnostic JSON-RPC 2.0 client and server which can work both in NodeJs, Browser, Electron etc.

This is WebWorker based transport but there are many more transports.

What is the reason of using JSON-RPC for WebWorkers?

People usually send data to WebWorker in a form like {id, method, params} in JSON format via postMessage. As a result they expect {id, result}. And this is what JSON RPC is. id is required when you send several request and need to map results and requests.

So, why to write own solution every time? This transport allows you use JSON RPC for calling methods in WebWorkers. Moreover, it will handle all of edge-cases like errors processing, timeouts, batch calls, bidirectional communication etc.

dho-rpc has zero dependencies and is a very small library.

Usage example (with simplified API)

worker.js

import expose from 'dho-rpc-transport-webworker/expose';

const sum = (a, b) => a + b;
const multiply = (a, b) => a * b;

expose({ sum, multiply }).catch(console.error);

index.js

import createClient from 'dho-rpc-transport-webworker/createClient';

async function main() {
  const client = createClient(new Worker('worker.js'));
  const result = await client.sum(2, 3);
}

main().then(console.log, console.error);

You can pass extra dho-rpc options to createClient as second parameter.

For example

const client = createClient(new Worker('worker.js'), { 
  requestTimeout: 1000 
});

More examples

See examples/simple-send-work-to-webworker

Standard API for sending work to your web worker.

See examples/send-work-to-webworker

Bidirectional connection

Each side works as client and server the same time.

See examples/bidirectional-calls

Keywords

FAQs

Last updated on 17 Dec 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc