bun-inspect-memory-usage-using-v8-heap-snapshots

star 5

Inspect memory usage using V8 heap snapshots

jarle By jarle schedule Updated 2/21/2026

name: Bun Inspect memory usage using V8 heap snapshots description: Inspect memory usage using V8 heap snapshots

Inspect memory usage using V8 heap snapshots

Bun implements V8's heap snapshot API, which allows you to create snapshots of the heap at runtime. This helps debug memory leaks in your JavaScript/TypeScript application.

import v8 from "node:v8";

// Creates a heap snapshot file with an auto-generated name
const snapshotPath = v8.writeHeapSnapshot();
console.log(`Heap snapshot written to: ${snapshotPath}`);

Inspect memory in Chrome DevTools

To view V8 heap snapshots in Chrome DevTools:

  1. Open Chrome DevTools (F12 or right-click and select "Inspect")
  2. Go to the "Memory" tab
  3. Click the "Load" button (folder icon)
  4. Select your .heapsnapshot file
Chrome DevTools Memory Tab
Install via CLI
npx skills add https://github.com/jarle/bun-skills --skill bun-inspect-memory-usage-using-v8-heap-snapshots
Repository Details
star Stars 5
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator