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

getlet

v2.5.1

Published

HTTP(s) get request with redirect, compress and streaming

Downloads

103

Readme

NPM version Build Status Dependency Status

getlet

HTTP(s) request with redirect, compress and streaming

To be used if you only need bare bones HTTP request and if you'd rather have your response processed downstream.

getlet will send the request, handle the redirects and pipe the response. If you need anything more than this check superagent or request.

getlet always asks for gzip or deflate encoding and decompresses the response, but it won't do any other processing. It won't buffer the responses in any way.

Examples

  const getlet = require('getlet');

  // get URL and stream it
  getlet('http://google.com').pipe(stream);

  // configure URL from host and part
  getlet()
    .host('raw2.github.com')
    .path('/pirxpilot/liftie/master/.jshintrc')
    .secure(true)
    .on('error', errorHandler)
    .pipe(stream);

  // post some data
  getlet('https//example.com/form')
    .method('POST')
    .send(formData)
    .pipe(stream);

  // get URL and stream it, initialize later
  const request = getlet('http://google.com', false);
  setTimeout(function () {
    request.pipe(stream);
    request.init();
  }, 1000);
  // initialize later

API

getlet(url, autoInit = true)

url is an optional parameter - alternatively you can configure target using host and path autoInit if false init() has to be called explicitly to trigger network request

host(host)

path(path)

secure(on)

if on is truthy use HTTPS instead of HTTP

userAgent(ua)

set User-Agent header

header(name, value)

set header name to value, also accepts an object treated as name -> value

auth(username, password)

sets basic authentication Authorization header

send(data)

sends data with the request

method(method)

uses HTTP method (POST, PUT etc) - GET is used if method is not called

followRedirects(boolean)

when called with false will prevent getlet from automatically following redirects