This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The Profiler interface of the JS Self-Profiling API enables you to create a profile of some part of your web application's execution.
Profiler() Experimental
Creates a new Profiler object, and starts collecting samples.
Profiler.stop() Experimental
Stops the profiler, returning a Promise that resolves to the profile.
samplebufferfullFired when the profile has recorded enough samples to fill its internal buffer.
The following code profiles the doWork() operation, and logs the result.
const profiler = new Profiler({ sampleInterval: 10, maxBufferSize: 10000 });
doWork();
const profile = await profiler.stop();
console.log(JSON.stringify(profile));
The following code profiles the time between the script first running and the window's load event firing.
const profiler = new Profiler({ sampleInterval: 10, maxBufferSize: 10000 });
window.addEventListener("load", async () => {
const profile = await profiler.stop();
console.log(JSON.stringify(profile));
});
| Specification |
|---|
| JS Self-Profiling API> # the-profiler-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
Profiler |
94 | 94 | No | 80 | No | 94 | No | 66 | No | 17.0 | 94 | No |
Profiler |
94 | 94 | No | 80 | No | 94 | No | 66 | No | 17.0 | 94 | No |
sampleInterval |
94 | 94 | No | 80 | No | 94 | No | 66 | No | 17.0 | 94 | No |
stop |
94 | 94 | No | 80 | No | 94 | No | 66 | No | 17.0 | 94 | No |
stopped |
94 | 94 | No | 80 | No | 94 | No | 66 | No | 17.0 | 94 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Profiler