
Security News
Open VSX Begins Implementing Pre-Publish Security Checks After Repeated Supply Chain Incidents
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.
Treat node.js http(s) as a simple duplex stream
npm install flowhttp
Get the flowHttp module:
var flowHttp = require('flowhttp');
The flowHttp module exposes 4 basic functions, each corresponding to the
standard HTTP REST verbs:
flowHttp.get(options): Perform a GET requestflowHttp.post(options): Perform a POST requestflowHttp.put(options): Perform a PUT requestflowHttp.del(options): Perform a DELETE requestflowHttp(options): An alias for the flowHttp.get(options) functionThe options argument is identical to the first argument of the
http.request()
method in core, but basically options can be an object or a string. If
options is a string, it is automatically parsed with
url.parse().
For details see the
http.request()
documentation.
FlowHttp handles both HTTP and HTTPS transparently.
Each of the 4 basic functions available on the flowHttp module returns a
duplex stream. This makes it very easy to read data from any request and
optionally write data to a POST or PUT request.
var stream = flowHttp('http://example.com');
function (response) {} - Get access to the raw http.IncomingMessage reponse object. This is emitted before any data or end event. You would normally not need to listen for this event unless you need to acceess the response headers or status codefunction (chunk) {} - Emitted for each chunk of the reponse bodyfunction () {} - Emitted when the entire reponse have been receivedfunction (err) {} - If an error occurs during the request/reponse cycle, you will get notified hereBesides the normal methods avaliable on a duplex stream, the following API from http.ClientRequest have been made available:
.setHeader(name, value).getHeader(name).removeHeader(name)A dead simple GET request piped to STDOUT:
flowHttp('http://example.com').pipe(process.stdout);
Same as above by listening to the emitted events:
var body = '';
var req = flowHttp('http://example.com')
.on('response', function (res) {
if (res.headers['some-header'] !== 'some-expected-value')
req.abort(); // terminate the request
})
.on('data', function (chunk) {
body += chunk;
})
.on('end', function () {
// output the body returned from the GET example.com reqeust
console.log(body);
});
Upload a picture by piping it through a simple POST request and outputting the response to STDOUT:
fs.createReadableStream('./picture.jpg')
.pipe(flowHttp.post('http://example.com'))
.pipe(process.stdout);
POST data to the remote server and pipe the response to STDOUT:
var req = flowHttp.put('http://example.com');
req.pipe(process.stdout);
req.write('data to be sent to the server');
red.end(); // call end to send the request
MIT
FAQs
Treat node.js http(s) as a simple duplex stream
The npm package flowhttp receives a total of 0 weekly downloads. As such, flowhttp popularity was classified as not popular.
We found that flowhttp 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
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.

Research
/Security News
Threat actors compromised four oorzc Open VSX extensions with more than 22,000 downloads, pushing malicious versions that install a staged loader, evade Russian-locale systems, pull C2 from Solana memos, and steal macOS credentials and wallets.

Security News
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.