Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
librpc-web-mod
Advanced tools
Promise-based RPC client and server for web workers (forked from @librpc/web)
Forked from https://github.com/librpc/web to add transferrables and serialized-error
npm install --save librpc-web-mod
// server.js
import { Server as RpcServer } from 'librpc-web-mod'
function wait(time) {
return new Promise(resolve => setTimeout(resolve, time))
}
self.rpcServer = new RpcServer({
add({ x, y }) {
return x + y
},
task() {
return wait(1000)
},
error() {
return err
},
transfer(buffer) {
return { buffer }
},
})
// client.js
import { Client as RpcClient } from 'librpc-web-mod'
var worker = new window.Worker('server.js')
var rpcClient = new RpcClient({ workers: [worker] })
rpcClient.call('add', { x: 1, y: 1 }).then(res => console.log(res)) // 2
rpcClient.call('length').catch(err => console.log(err)) // Unknown RPC method "length"
rpcClient.call('task', null, { timeout: 100 }).catch(err => console.log(err)) // Timeout exceeded for RPC method "task"
rpcClient.call('error').catch(err => console.log(err)) // ReferenceError: err is not defined
rpcClient
.call('transfer', new ArrayBuffer(0xff))
.then(res => console.log(res.buffer)) // ArrayBuffer(255)
#constructor(methods: { [string]: (*) => Promise<*> | * })
var server = new RpcServer({
add({ x, y }) {
return x + y
},
sub({ x, y }) {
return x - y
},
mul({ x, y }) {
return x * y
},
div({ x, y }) {
return x / y
},
pow({ x, y }) {
return x ** y
},
})
Every passed method becomes remote procedure. It can return Promise if it is needed. Only ArrayBuffers will be transferred automatically (not TypedArrays). Errors thrown by procedures would be handled by server.
#emit(eventName: string, data: *)
setInterval(() => {
server.emit('update', Date.now())
}, 50)
Trigger server event.
Note: contents of data is recursively inspected for Transferable objects. For large data, this can sometimes be intensive, so if an object contains an attribute containsNoTransferables
that is set to true
, transferable inspection (the peekTransferables
function) will skip that object.
#constructor(options: { workers: Array<Worker> })
var worker = new window.Worker('server.js')
var client = new RpcClient({ workers: [worker] })
Client could be connected to several workers for better CPU utilization. Requests are sent to an exact worker by round robin algorithm.
#call(method: string, data: *, { timeout = 2000 } = {}): Promise<*>
client.call('pow', { x: 2, y: 10 }).then(result => console.log(result))
Remote procedure call. Only ArrayBuffers will be transferred automatically (not TypedArrays).
Error would be thrown, if:
timeout
#on(eventName: string, listener: (*) => void)
function listener(data) {
console.log(data)
}
client.on('update', listener)
Start listen to server events.
#off(eventName: string, listener: (*) => void)
client.off('update', listener)
Stop listen to server events.
FAQs
Promise-based RPC client and server for web workers (forked from @librpc/web)
We found that librpc-web-mod demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.