(async () => {
const blob = await (await fetch('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png')).blob();
const img = new Image();
img.src = URL.createObjectURL(blob);
return img;
})();
const img = new Image();
img.src = 'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png';
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
from blob | |
from native |
Test name | Executions per second |
---|---|
from blob | 12362.1 Ops/sec |
from native | 47125.6 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks.
The provided benchmark measures the performance difference between loading an image from a blob and using the native Image
object to load an image from a URL.
Options being compared:
URL.createObjectURL()
to create a URL that can be used as the src
attribute of an img
element.Image
object with URL: This approach simply sets the src
attribute of an existing Image
object to a pre-generated URL for the image.Pros and Cons:
Image
object with URL:Library and its purpose:
There is no explicit library mentioned in the benchmark code. However, URL
and fetch
are built-in JavaScript APIs that provide functionality for working with URLs and making network requests, respectively.
Special JS features or syntax:
None of the test cases use any special JavaScript features or syntax beyond what is necessary to run the benchmarks. The focus is on comparing two different approaches to loading images in a JavaScript environment.
Other alternatives:
If you wanted to add more variations to this benchmark, some potential alternatives could include:
It's worth noting that the specific options and variations will depend on the goals and requirements of the benchmark.