
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
request-stream
Advanced tools
Extremely minimal wrapper around node core http/https to conveniently get request and response streams
Extremely minimal wrapper around node core http/https to get request and response streams.
This module is under 100 lines of code, total file + folder size including node_modules is 150kb, compared to 4.7mb for the popular request module. The benefit and drawback of this module is that it doesn't have that many features. Use it if you want something low level and lightweight.
var request = require('request-stream')You can now use request to make new requests
var req = request(url, [opts], callback)req is a writable stream. Data written to it will be written to the request upload body. For requests wtih an upload body you must call req.end() for the request to finish, even if you write no data to it. If you don't call req.end() you will never receive a response.
url is the HTTP url for this request
opts are request options:
GET - sets HTTP methodurlurlurl10truecallback is called with (err, res). If there was no err, res will be a readable stream of the response data.
In the event that maxRedirects was exceeded you will receive both an err and the res of the last redirect.
Both req and res are the unmodified http.ClientRequest and http.IncomingMessage
These set the method option for you
FAQs
Extremely minimal wrapper around node core http/https to conveniently get request and response streams
The npm package request-stream receives a total of 167 weekly downloads. As such, request-stream popularity was classified as not popular.
We found that request-stream 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.