FCP INVOCATION

PHOTO EMBED

Fri Mar 08 2024 11:11:08 GMT+0000 (Coordinated Universal Time)

Saved by @developerjindal

new PerformanceObserver((entryList) => {
  for (const entry of entryList.getEntriesByName('first-contentful-paint')) {
    console.log('FCP candidate:', entry.startTime, entry);
  }
}).observe({type: 'paint', buffered: true});
content_copyCOPY

One can find FCP score of a website using this code by running it on the console.