Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
forever-agent
Advanced tools
HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.
The forever-agent npm package is an HTTP/HTTPS Agent that keeps connection alive between requests. It is used primarily to reuse TCP connections in Node.js HTTP networking, which can lead to improved performance in some scenarios.
Connection Reuse
This feature allows the agent to keep the TCP connection open for future requests to the same host, which can reduce the latency associated with establishing new TCP connections for each request.
const http = require('http');
const ForeverAgent = require('forever-agent');
const agent = new ForeverAgent();
http.request({
host: 'example.com',
agent: agent
});
agentkeepalive is another npm package that provides similar functionality to forever-agent. It offers an HTTP and HTTPS Agent which keeps socket connections alive between keep-alive requests. It is more actively maintained and offers additional features such as per-host connection limiting.
got is a more comprehensive HTTP request library for Node.js that includes keep-alive functionality among many other features. It is designed to be a nicer and more user-friendly alternative to the built-in http module and includes retry support, stream support, and more.
HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.
FAQs
HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.
The npm package forever-agent receives a total of 13,138,119 weekly downloads. As such, forever-agent popularity was classified as popular.
We found that forever-agent demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.