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

harasser

v1.2.1

Published

Send repeated http requests, even indefinitely, if you like. I hereby wash my hands of what you do with this.

Downloads

13

Readme

harasser

Send repeated http requests, even indefinitely, if you like. I hereby wash my hands of what you do with this.

Install

npm install -g harasser

Usage

harass url_to_harass [options]

Options:
  -i, --iterations NUMBER number of iterations
  -b, --bandwidth [NUMBER] number of calls to run simultaneously (Default is 10)
  -r, --repeat [NUMBER]  time (ms) between repeating call (Default is 1000)
  -m, --methods [STRING] methods of HTTP calls to send, comma-delineated  (Default is post,get,put,patch,delete)
  -a, --append BOOLEAN   append method to url to call
  -h, --headers [STRING] headers, comma delineated (Default is Host:httpbin.org)
  -t, --filetypes [STRING] which filetypes to send in calls, randomly assigned  
          (Default is css,csv,gif,html,ico,jpg,js,json,md,png,svg,txt,xml,yml)
  -f, --includeform BOOLEAN include calls with application/x-form-urlencoded bodies
  -k, --no-color         Omit color from output
      --debug            Show debug information
  -v, --version          Display the current version

--repeat

Repeat is the number of milliseconds it waits after the last call completed. This won't stack up calls on top of each other if the requests are taking forever. That means, if you set the --repeat param to 1500 ms, and the calls take 2000 ms to complete, there will be 3500 ms between the start of each call. I wanted to make sure the previous calls went through before stacking more on. Ends up being pretty snappy most of the time.

sleep() vs setInterval

The original script this was built out of was using setInterval and/or setTimeout, both of which, for some reason on my system, stopped working after a couple hundred iterations. I still have no idea why it does that. If you know, please shoot me a message. The synchronous sleep() call checks the milliseconds of the current Date() object before continuing. All the tests I've done with this method seem to be working quite nicely for me, tested over 10k iterations with no signs of stopping. If you have another method that works better, please let me know.

Why?

I needed a way to test a large number of requests into Kong for testing the Galileo platform (for which I built the frontend). This cli did the ticket.

Licenses

This application is released under ISC licensing.