Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
TEstzgzrg
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36
Browser:
Chrome 135
Operating system:
Linux
Device Platform:
Desktop
Date tested:
one year ago
Test name
Executions per second
set
17438970.0 Ops/sec
Includes
182490864.0 Ops/sec
HTML Preparation code:
<!--your preparation HTML code goes here-->
Script Preparation code:
/*your preparation JavaScript code goes here To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/ async function globalMeasureThatScriptPrepareFunction() { // This function is optional, feel free to remove it. // await someThing(); }
Tests:
set
const SINGLETON_LIBRARIES = new Set(['react-router-dom', 'react-router', 'react']); const config = { name: '{{remoteName}}', exposes: { './Module': './src/remote-entry.ts', }, shared: (libraryName, sharedConfig) => { if (SINGLETON_LIBRARIES.has(libraryName)) { return { ...sharedConfig, singleton: true, }; } return sharedConfig; }, };
Includes
const SINGLETON_LIBRARIES = ['react-router-dom', 'react-router', 'react']; const config = { name: '{{remoteName}}', exposes: { './Module': './src/remote-entry.ts', }, shared: (libraryName, sharedConfig) => SINGLETON_LIBRARIES.includes(libraryName) ? { ...sharedConfig, singleton: true, } : sharedConfig, };