Tag perf

4 bookmarks have this tag.

2025-08-17

138.

cpupro — A viewer for CPU profiles captured in V8 runtimes like Node.js, Deno or Chromium browsers

discoveryjs.github.io/cpupro

2025-08-03

136.

ripgrep much slower than (rip)grep

github.com/BurntSushi/ripgrep/issues/1335#issuecomment-517668471

Namely, if the file with a very long line is searched after most other files, then the performance impact will be small, since the large buffer will be used for a comparatively small number of files.

2025-05-12

106.

Possibly-Invoked Function Expressions | Blazingly fast parsing, part 2: lazy parsing · V8

v8.dev/blog/preparser#pife

This is the second part of our article series explaining how V8 parses JavaScript as fast as possible.

2025-05-04

104.

requestIdleCallback()

developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback

The window.requestIdleCallback() method queues a function to be called during a browser's idle periods. This enables developers to perform background and low priority work on the main event loop, without impacting latency-critical events such as animation and input response.