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.
Your friendly neighborhood request tracker?
import express from 'express';
import busybody from 'busybody';
const app = express();
const tracker = busybody();
app.use(tracker);
app.get('/stats', (req, res) => {
res.send(tracker.getStats(req.query.sortBy));
});
app.get('/ping', (req, res) => {
setTimeout(() => res.send('pong'), 100);
});
app.listen(8080, () => console.log('Server listening'));
{
"since": "2016-05-19T21:18:44.362Z",
"routes": [
{
"route": "/ping",
"count": 4,
"mean": 127.5,
"standardDeviation": 25.5,
"min": 96.3,
"max": 153.4
},
{
"route": "/stats",
"count": 4,
"mean": 1.7,
"standardDeviation": 1.1,
"min": 1,
"max": 3.5
}
]
}
busybody(options) -> tracker
Creates a new tracker. Takes in the following options.
step=21600000
- Time between steps in milliseconds. Defaults to 6 hours.window = 4
- Maximum steps to store.maxSize = 500
- Maximum unique paths to store per step, after path sanitization.precision = 2
- Maximum decimals to round to.preFilter(req, res) -> boolean
- Custom function to filter tracked requests before they're handled.postFilter(err, req, res) -> boolean
- Custom function to filter tracked requests after they're handled.sanitize(req, res) -> string
- Custom function to sanitize a url. By default, removes querystring, ids, uuids, and casing.onStep(step)
- shortcut for tracker.on('step', fn)
(see Events)onExpire(step)
- shortcut for tracker.on('expire', fn)
(see Events)busybody.sanitize(req, res) -> string
The default sanitization function. It makes the following transformations to req.originalUrl
.
:id
.:uuid
.> /path/../2/something?foo=bar
/:id/something/
> /foo/BAR/21/123e4567-e89b-12d3-a456-426655440000
/foo/bar/:id/:uuid/
tracker(req, res, next)
Express middleware that should be placed above routes you want to keep stats about.
tracker.getStats(sort = 'mean') -> object
Returns the stats output.
The sort
parameter can be count
, mean
, standardDeviation
, min
, or max
.
tracker.push(path, ms)
Manually track a path and duration.
The middleware returned by busybody is also an EventEmitter
that exposes
the following events:
expire
- emitted when a step is about to expire. Passed the expiring step.step
- emitted after a new step was created. Passed the new step.FAQs
Measure express routes speed over time.
The npm package busybody receives a total of 5 weekly downloads. As such, busybody popularity was classified as not popular.
We found that busybody 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.