HTML Preparation code:
AخA
 
1
<div id="test"></div>
Tests:
  • Fetch (default)

     
    fetch('https://jsonplaceholder.typicode.com/todos', {
      method: 'GET'
    })
      .then((response) => {
        return response.text();
      })
      .then((data) => {
        console.log(data);
      });
  • Fetch (no-store)

     
    fetch('https://jsonplaceholder.typicode.com/todos', {
      method: 'GET',
      cache: 'no-store'
    })
      .then((response) => {
        return response.text();
      })
      .then((data) => {
        console.log(data);
      });
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Fetch (default)
    Fetch (no-store)

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36
Chrome 80 on Windows
View result in a separate tab
Test name Executions per second
Fetch (default) 1937.6 Ops/sec
Fetch (no-store) 1828.7 Ops/sec