object = { value: 'data' };
proxy = new Proxy(object, {})
proxy = new Proxy(proxy, {})
proxyWithHandler = new Proxy(object, {
get(target, prop, receiver) {
return Reflect.get(target, prop, receiver)
}
})
proxyWithHandler = new Proxy(proxyWithHandler, {
get(target, prop, receiver) {
return Reflect.get(target, prop, receiver)
}
})
object.value;
proxy.value
proxyWithHandler.value
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Object access | |
Proxy access | |
Proxy with get handler access |
Test name | Executions per second |
---|---|
Object access | 5839650.0 Ops/sec |
Proxy access | 4151654.8 Ops/sec |
Proxy with get handler access | 1159858.4 Ops/sec |
Benchmark Overview
The MeasureThat.net benchmark measures the performance of JavaScript microbenchmarks, specifically comparing the execution times of three different approaches: direct object access, proxy access, and proxy access with a getter handler.
Benchmark Definition JSON Analysis
The benchmark definition JSON contains information about the script preparation code, which is used to create objects, proxies, and a custom getter handler. Here's a breakdown of the relevant parts:
Script Preparation Code
: This section creates an object object
with a property value
, sets up two proxy objects (proxy
and proxyWithHandler
) using the Proxy
constructor, and defines a custom getter handler for proxyWithHandler
. The script is executed to create these proxies.Html Preparation Code
: This section is empty, indicating that no HTML preparation code is required.Options Compared
The benchmark compares three options:
value
property of the object
using dot notation (object.value
).value
property of the proxy
object.value
property of the proxyWithHandler
object, which uses a custom getter handler to delegate access to the underlying object.Pros and Cons
Here's a brief summary of the pros and cons of each approach:
Library and Custom Getter Handler
The Reflect.get()
function is used in the custom getter handler to delegate access to the underlying object. This function allows for more fine-grained control over property access, making it easier to implement custom logic without modifying the underlying object.
Special JS Feature or Syntax
There are no special JavaScript features or syntax mentioned in this benchmark definition. It uses standard JavaScript constructs and does not rely on any experimental or proposed features.
Alternatives
If you're interested in exploring alternative approaches for proxying objects, consider:
ProxyHandler
(ECMAScript 2015) to create a custom getter handler.Keep in mind that each alternative may introduce additional complexity and trade-offs.