
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@feedthrough/core
Advanced tools
feedthrough.dev · npm · GitHub
The in-browser debug bridge for Feedthrough. Intercepts console output, fetch, and XHR; handles incoming commands; streams everything to the MCP server over WebSocket.
import { init } from "@feedthrough/core";
// Connect to the default MCP server at ws://localhost:8765
const bridge = init();
// Or with options
const bridge = init({ serverUrl: "ws://localhost:9000" });
// Clean up
bridge.destroy();
Dev-only pattern (zero cost in production):
if (import.meta.env.DEV) {
import("@feedthrough/core").then(({ init }) => init());
}
log, warn, error, info, debug. Originals still fire normally.fetch and XMLHttpRequest, both pending and resolved (with status code and
duration).click, fill, hover, inspect, query_dom,
get_console_logs, get_network_requests.interface BridgeOptions {
serverUrl?: string; // default: "ws://localhost:8765"
reconnectDelay?: number; // ms between reconnect attempts, default: 2000
}
The bridge opens a WebSocket to the MCP server (@feedthrough/mcp) on startup. If the
connection fails or drops it reconnects automatically. Messages are queued and flushed once the
socket opens, so nothing is lost even if the bridge initialises before the server is ready.
dist/feedthrough.iife.js is a self-contained bundle for direct injection into any page
(used by @feedthrough/cypress and the bookmarklet). It reads initial options from
window.__feedthroughOptions before connecting.
FAQs
Unknown package
The npm package @feedthrough/core receives a total of 22 weekly downloads. As such, @feedthrough/core popularity was classified as not popular.
We found that @feedthrough/core 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.
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
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.