
Security News
152 Chrome Live Wallpaper Extensions Hid Ad Tracking and Faked Google Search Traffic
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.
v8-deopt-generate-log
Advanced tools
Given a JavaScript file or URL, run the file or webpage and save a log of V8 optimizations and deoptimizations.
Check out
v8-deopt-viewerfor a CLI that automates this for you!
Requires NodeJS 14.x or greater.
npm i v8-deopt-generate-log
Also install puppeteer if you plan to generate logs for URLs or HTML files:
npm i puppeteer
See index.d.ts for the latest API. A snapshot is below.
interface Options {
/** Path to store the V8 log file. Defaults to your OS temporary directory */
logFilePath?: string;
/**
* How long the keep the browser open to allow the webpage to run before
* closing the browser
*/
browserTimeoutMs?: number;
}
/**
* Generate a V8 log of optimizations and deoptimizations for the given JS or
* HTML file
* @param srcPath The path or URL to run
* @param options Options to influence how the log is generated
* @returns The path to the generated V8 log file
*/
export async function generateV8Log(
srcPath: string,
options?: Options
): Promise<string>;
FAQs
Generate a V8 log given a JS or HTML file
We found that v8-deopt-generate-log 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
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.