
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/playwright
Advanced tools
feedthrough.dev · npm · GitHub
Playwright adapter for Feedthrough. Injects the bridge into every page before it loads, so console output and network requests are captured from the first line of page JavaScript.
While your tests run, an AI agent connected to the MCP server can observe what's happening in the browser in real time — useful for diagnosing test failures interactively.
npm install --save-dev @feedthrough/playwright
Replace the @playwright/test import in your spec files with @feedthrough/playwright:
// tests/example.spec.ts
import { test, expect } from "@feedthrough/playwright";
test("my test", async ({ page }) => {
await page.goto("/");
// bridge is already injected — MCP server can observe this page
});
Or create a shared fixture file to avoid touching every spec:
// tests/fixtures.ts
export { test, expect } from "@feedthrough/playwright";
If you need a non-default server URL, use setupFeedthrough instead of the pre-built test:
import { setupFeedthrough, expect } from "@feedthrough/playwright";
export const test = setupFeedthrough({ serverUrl: "ws://localhost:9000" });
export { expect };
# Terminal 1 — MCP server
node node_modules/@feedthrough/mcp/dist/index.js
# Terminal 2 — tests
npx playwright test
An AI agent can connect to the MCP server while the tests are running and observe each page
via get_console_logs, get_network_requests, and query_dom.
FAQs
Unknown package
The npm package @feedthrough/playwright receives a total of 1 weekly downloads. As such, @feedthrough/playwright popularity was classified as not popular.
We found that @feedthrough/playwright 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.