Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
This is a tiny wrapper around [Lighthouse](https://github.com/GoogleChrome/lighthouse) with some conveniences to run continious audits on your website pages.
This is a tiny wrapper around Lighthouse with some conveniences to run continious audits on your website pages.
You'll need to have Google Chrome installed, as Lighthouse runs audits using it.
To install rushy
just do:
yarn global add rushy
rushy --config=/path/to/your/config.json
Configuration .json file should look something like:
{
"urls": ["http://example.com"],
"storeDir": "./reports",
"reporter": "html",
"reportQuery": {
"Time to First Byte": "$.audits['time-to-first-byte'].rawValue"
}
}
Make sure to provide configuration suitable for your needs. More info can be found here.
When completed, the audit will be stored as a .csv file. What do next is up to you. For example, you can:
The thing you might think about is speeding up your performance checks by making them parallel. Currently, the way to achieve that is to run rushy
on a few machines or different containers so each instance only works on its own slice of an entire URL list.
To do so, please run the tool as the following:
rushy --worker 0 --worker-count=2 --config=[path/to/config.json]
Where --worker
is zero-based worker number and --worker-count
stands for the total number of workers you spawn.
Internally, rushy splits the URL list in a 100% deterministic and fair way so it loads your workers evenly and each URL is never checked twice.
In case you want to run checks in a Docker container you might use oleggromov/rushy image. Please make sure to read the documentation provided in the git repo oleggromov/rushy-docker.
FAQs
This is a tiny wrapper around [Lighthouse](https://github.com/GoogleChrome/lighthouse) with some conveniences to run continious audits on your website pages.
The npm package rushy receives a total of 5 weekly downloads. As such, rushy popularity was classified as not popular.
We found that rushy 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.