npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

flowhttp

v0.3.0

Published

Treat node.js http(s) as a simple duplex stream

Downloads

10

Readme

flowHttp

Treat node.js http(s) as a simple duplex stream

build
status

Install

npm install flowhttp

Usage

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 request
  • flowHttp.post(options): Perform a POST request
  • flowHttp.put(options): Perform a PUT request
  • flowHttp.del(options): Perform a DELETE request
  • flowHttp(options): An alias for the flowHttp.get(options) function

The 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.

Request & response

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');

Events

  • response: 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 code
  • data: function (chunk) {} - Emitted for each chunk of the reponse body
  • end: function () {} - Emitted when the entire reponse have been received
  • error: function (err) {} - If an error occurs during the request/reponse cycle, you will get notified here

API

Besides 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)

Examples

A dead simple GET request piped to STDOUT:

flowHttp('http://example.com').pipe(process.stdout);

Same as above, but using the standard events from stream.Readable:

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

License

MIT