![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
web-perf-test
Advanced tools
web-perf-test
: Web performance measuring tool using PuppeteerThis is a pretty simple CLI tool for measuring the initial page loading time of a web site, using Puppeteer.
It measures until the timing data is considered stable and prints out the statistics together with a box plot.
$ npm install -g web-perf-test
usage: web-perf-test [-h] [-v] [--show-chrome] url
Automated web performance test using Puppeteer.
Positional arguments:
url URL of the page to measure
Optional arguments:
-h, --help Show this help message and exit.
-v, --version Show program's version number and exit.
--show-chrome Make the Chromium browser visible
web-perf-test
loads the given page using Puppeteer and evaluates the
loading time using the
PerformanceTiming
data in the browser.
More specifically, it calculates loadEventEnd - requestStart
.
loadEventEnd
represents the moment when the load event is completed, and
requestStart
represents the moment when the browser sent the request to obtain the actual
document.
The loading time is measured at least 25 times. After that, the tool checks if the data is stable. If it is not stable, keep measuring until it becomes stable or the total number of measurements is 50.
The data is considered stable when the median is stable, which means that its interquartile range (IQR) is <= 1% of the median. The idea is borrowed from the Rules of Thumb for HTTP/2 Push document.
FAQs
Automated web performance test using Puppeteer.
The npm package web-perf-test receives a total of 2 weekly downloads. As such, web-perf-test popularity was classified as not popular.
We found that web-perf-test demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.