Skip to content

Browser RAM Checker

Inspect browser heap values, a privacy-limited device-memory estimate, and a small allocation test. This does not diagnose physical RAM health or measure hardware memory bandwidth.

RAM Checker

Displays browser memory usage and approximate device memory when APIs are available. Run the allocation test to compare browser memory write behavior.

performance.memory not available

The performance.memory API is only available in Chromium-based browsers (Chrome, Edge, Brave). Firefox and Safari do not expose heap memory information. You can still run the allocation speed test below.

Note: JS heap size reflects memory used by the JavaScript engine, not total system RAM. The allocation test fills a 50MB Float32Array to compare browser memory behavior. Device memory is an approximation rounded and capped for privacy.

Browser Memory APIs

Modern browsers expose limited memory information through the Performance API. The performance.memory API in Chrome provides insight into JavaScript heap usage, while the Device Memory API allows websites to adapt to different RAM configurations. These APIs help developers optimize web applications for a range of device capabilities.

The allocation test measures how long this browser takes to allocate and write to a 50MB block of memory. JavaScript engine behavior, garbage collection, and system load all affect the result, so it is useful for rough comparisons between runs rather than as a hardware memory-bandwidth benchmark.

What Browser Memory APIs Can Show

JavaScript heap usage

Chromium browsers can expose memory used by JavaScript objects in the current browser process.

Approximate device memory

The Device Memory API rounds physical RAM into broad buckets and caps values for privacy protection.

Not installed RAM exactly

A browser page cannot read exact RAM modules, memory channel configuration, swap usage, or system-wide process memory.

Useful for web app diagnostics

Use this page to compare browser memory behavior before and after opening heavy web apps, extensions, or dashboards.

RAM Checker FAQ

Common questions about browser memory APIs, JS heap size, deviceMemory, and allocation speed testing.