<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script>
<div id='container'></div>
window.container = $('#container').get(0);
var fragment = document.createElement('div');
fragment.innerHTML = '<div ng-click="click()"></div>';
angular.bootstrap(fragment);
container.appendChild(fragment);
var fragment = document.createElement('div');
fragment.innerHTML = '<div onclick="click()"></div>';
angular.bootstrap(fragment);
container.appendChild(fragment);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
ng | |
nat |
Test name | Executions per second |
---|---|
ng | 343.8 Ops/sec |
nat | 370.2 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks and explore what's being tested on MeasureThat.net.
Benchmark Definition
The benchmark definition is a JSON object that describes the test case. It has four properties:
Name
: A unique name for the benchmark.Description
: An optional description of the benchmark, which is empty in this case.Script Preparation Code
: A JavaScript code snippet that sets up the environment before running the benchmark. In this case, it creates a window.container
variable by getting an HTML element with the ID "container".Html Preparation Code
: An HTML code snippet that prepares the HTML structure for the benchmark. It includes a script tag to load AngularJS 1.5.3 and a <div>
element with the ID "container".Individual Test Cases
There are two test cases defined in the benchmark:
**: This test case uses AngularJS to create an Angular application inside a
element. The JavaScript code snippet creates a
fragmentelement, sets its inner HTML to a template with a
click()function, and then boots up the Angular application using
angular.bootstrap(). Finally, it appends the
fragmentelement to the
window.container`.**: This test case is similar to the previous one, but instead of using AngularJS, it uses a native JavaScript event listener (
onclick`) to handle the click event.Options Compared
The two test cases compare two different approaches:
angular.bootstrap()
or appendChild()
to initialize the benchmark application. However, the order of operations is different in each test case.Pros and Cons
Here are some pros and cons of each approach:
Library and Purpose
In the benchmark, AngularJS is used as a library to build and execute the Angular application. The purpose of this library is to provide a robust framework for building complex applications that can take advantage of modern web technologies like templates, services, and dependency injection.
Special JS Features or Syntax
There are no special JavaScript features or syntax mentioned in the benchmark definition or individual test cases. However, it's worth noting that AngularJS has its own set of features and syntax, such as templates ({{ }}
) and directives (ng-click
).
Alternatives
If you're looking for alternatives to MeasureThat.net, here are a few options: