Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
@recordreplay/puppeteer-config
Advanced tools
Configuration utilities for using the Replay browsers with puppeteer
@recordreplay/puppeteer-config
Provides utilities to support using Replay with Puppeteer
Exports
getExecutablePath(browserName: string)
- Returns the path to the replay browser for the given browserName
: only "chromium"
is currently supported. If browserName
isn't supported on the current platform, undefined
is returned.devices
- Object of configurations suitable for using with @puppeteer/test
. Currently only supports a "Replay Chromium"
configuration. If the configuration isn't supported on the current platform, a warning is emitted and the executablePath
will be undefined.If you are using puppeteer
(rather than @recordreplay/puppeteer
), you can configure it to use the Replay browser by passing in the executablePath
to launch()
.
const puppeteer = require("puppeteer");
const { getExecutablePath } = require("@recordreplay/puppeteer-config");
(async () => {
const browser = await puppeteer.launch({
headless: false,
executablePath: getExecutablePath("chromium"),
});
const page = await browser.newPage();
await page.goto("https://replay.io");
await page.screenshot({ path: "replay.png" });
await page.close();
await browser.close();
})();
FAQs
Configuration utilities for using the Replay browsers with puppeteer
The npm package @recordreplay/puppeteer-config receives a total of 0 weekly downloads. As such, @recordreplay/puppeteer-config popularity was classified as not popular.
We found that @recordreplay/puppeteer-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.