
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@qawolf/jest-reporter
Advanced tools
🎬 Capture a video of a Playwright page (Chromium only for now)
When Playwright adds support for the Screencast API in Firefox and WebKit, this will be updated to support these browsers.
npm i playwright playwright-video ffmpeg-static
If you already have FFmpeg installed, you can skip the ffmpeg-static
installation by setting the FFMPEG_PATH
environment variable.
npm i playwright playwright-video
const { chromium, devices } = require('playwright');
const { VideoCapture } = require('playwright-video');
(async () => {
const iPhone = devices['iPhone 6'];
const browser = await chromium.launch();
const context = await browser.newContext({
viewport: iPhone.viewport,
userAgent: iPhone.userAgent,
});
const page = await context.newPage();
await VideoCapture.start({
browser,
page,
savePath: '/tmp/video.mp4',
});
await page.goto('http://example.org');
await Promise.all([
page.waitForNavigation({ waitUntil: 'networkidle0' }),
page.click('a'),
]);
await browser.close();
})();
The video will be saved at the specified savePath
(/tmp/video.mp4
in the above example).
FAQs
A basic Jest reporter that works with a REPL
The npm package @qawolf/jest-reporter receives a total of 52 weekly downloads. As such, @qawolf/jest-reporter popularity was classified as not popular.
We found that @qawolf/jest-reporter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.