aurelia/aurelia

View on GitHub
benchmarks/startup10k-local.html

Summary

Maintainability
Test Coverage
<script type="module">
import { start } from './local/dist/app.local.js';

const host = document.body.appendChild(document.createElement('div'));
performance.mark('10k-start');
const au = start(host, 10000);

performance.mark('10k-end');

// measure memory in MBs
window.jsHeapSize = performance.memory.usedJSHeapSize / 1e6;

performance.measure('startup-10k', '10k-start', '10k-end');
</script>