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

load-generator

v1.3.0

Published

Generates http(s) load.

Downloads

66

Readme

load-generator

Generates http(s) load.

Published on npm

screenshot

Simple usage

Continously calls the URL, with 2 workers.

npx load-generator http://www.example.com/

With 4 workers and with cache buster, {__random__} is replaced by a random number.

npx load-generator --workers 4 http://www.example.com/?random={__random__}

Multiple URLs with randomized language value.

npx load-generator --values lang=de,en,it,fr http://www.example.com/{lang}/ http://www.example.com/{lang}/category/2/?random={__random__}

CLI options

--url

  • Type string[]

URLs containing optional placeholders. A placeholder must be in curly braces and will be filled with the corresponding values in the named values option. Default option This is the default option, the option --url may be ommitted for simplicity.

--values

  • Type string[]

Named value lists for placeholders in the URLs. Must follow the following name and comma-separated pattern. Example, add values for lang: --values "lang=en,de,it,fr"

--header

  • Type string[]

HTTP header added to every request. Example to add cookies: --header "Cookie=name1:value1; name2:value2" Example JSON Content-Type: --header "Content-Type=application/json"

-p, --porcelain

  • Type boolean
  • Default false

Output in machine friendly format, no UI.

--pause

  • Type int
  • Default 0

Pause between each request per worker in millisecons.

--timeout

  • Type int
  • Default 3000

Request timeout in milliseconds, set to 0 to use system default.

-w, --workers

  • Type int
  • Default 2

Amount of parallell requesting workers.

-h, --help

Displays help text.

-v, --version

Displays version.

Usage with config file

1.) Create a configuration file, and save it as load-generator.json

In this example, each of the 8 worker picks one URL at the time, fills in placeholders randomly within it's list of values and calls it, one at the time and pauses 100ms in between calls.

{
  "pause": 100,
  "workers": 8,
  "timeout": 1000,
  "urls": [
    "http://www.example.com/{lang}/",
    "http://www.example.com/{lang}/?sort={sort}&page={page}&cachebust={__random__}"
  ],
  "values": {
    "lang": ["de", "fr", "it", "en"],
    "sort": ["1", "2", "3", "4", "5", "7", "8", "10"],
    "page": ["1", "2", "3", "4", "5", "7", "8", "10"]
  },
  "headers": {
    "cookie": "accessToken=1234abc; userId=1234"
  }
}

2.) Run npx load-generator in the same directory.

Hint: Config file and CLI options can be combined, where CLI options always have higher priority over eqivalent config file options.