
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
tauri-plugin-conduit
Advanced tools
High-performance binary IPC client for Tauri v2.
npm install tauri-plugin-conduit
Drop-in replacement for @tauri-apps/api/core:
import { invoke } from 'tauri-plugin-conduit';
const result = await invoke<MyType>('my_command', { key: 'value' });
Binary payloads:
import { connect } from 'tauri-plugin-conduit';
const conduit = await connect();
const buf = await conduit.invokeBinary('raw_cmd', new Uint8Array([1, 2, 3]));
Push streaming:
import { subscribe } from 'tauri-plugin-conduit';
const unsub = await subscribe('telemetry', (buf) => {
// Parse binary frames from buf...
});
invoke<T>(cmd, args?, options?) — JSON request/responseinvokeBinary(cmd, payload?, options?) — binary request/responsesubscribe(channel, callback) — event-driven push streaming (no polling)drain(channel) — pull-based ring buffer access (user controls timing)connect() — explicit connection lifecycleLicensed under either of MIT or Apache-2.0 at your option.
FAQs
High-performance binary IPC client for Tauri v2
The npm package tauri-plugin-conduit receives a total of 2 weekly downloads. As such, tauri-plugin-conduit popularity was classified as not popular.
We found that tauri-plugin-conduit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.