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

ngb

v1.1.0

Published

Nab, Grab and Benchmark a URL

Downloads

68

Readme

ngb - Nab, Grab n' Benchmark a URL

ngb is a commandline utility for testing and benchmarking a list of URLs. It is similar to Apache Bench, but can also perform additional checks on the content returned from the server.

ngb runs iterations of tests against a list of URLs, where each URL is a separate test. Every iteration runs all the test URLs before continuing to the next iteration.

Once all requests are executed for a test, the next test is executed (the next URL). Once all tests are finished, the next iteration is executed.

You can specify the total number of requests per test, with the number of concurrent requests to use.

ngb by default checks that the content returned from the server is the same in all responses, and will report an error for responses that do not match the baseline response. The baseline response is the first response returned from the server.

ngb reports at the end of every test the average request duration, and details all the errors if there were any.

Installation

npm install -g ngb

Usage

> ngb
Usage: ngb [OPTIONS] URL [URL...]

  URL          A URL to perform a test against

Options:
  -m <method>                  the http method to use for the request. default is GET.
  -i <number>                  the number of iteration to run all the tests. default is 1.
  -d <number>                  delay in seconds between test iterations. default is 30.
  -c <number>                  concurrent requests per test per iteration. default is 1.
  -n <number>                  total number of requests per test per iteration. default is 1.
  -t <number>                  request timeout in milliseconds to consider as an error. default is 10000
  -p <url>                     proxy as http[s]://[username:password]@hostname_or_ip[:port]. default is no proxy
  --content <file or string>   the request content to send to the server. may be a string to send or a js file that exports a function that will be used to return the content
  --content-type <type>        the content type that is sent to the server. default is application/json
  --check-content <true|false> whether to check the response body and report an error for responses that do not match the expected content. default is true.
  --ntlm <domain>              NTLM domain if the proxy auth is ntlm
  --report-errors <url>        report errors to the specified url using HTTP POST. reported errors are formatted as logstash JSON messages
  --report-tag <url>           report errors tag value
  --progress                   show requests progress

Examples

  • run 3 iterations with 1 second delay against a single url https://httpbin.org/user-agent with 10 sequential requests, also showing progress
ngb -i 3 -d 1 -n 10 --progress https://httpbin.org/user-agent
  • run 3 iterations against a single url https://httpbin.org/user-agent with a total of 100 requests and 10 concurrent
> ngb -i 3 -d 1 -n 100 -c 10 --progress https://httpbin.org/user-agent
  • run through a proxy with authentication against a single url https://httpbin.org/user-agent
ngb -n 100 -c 10 -p http://admin:[email protected]:8081 https://httpbin.org/user-agent
  • run against a single url https://httpbin.org/user-agent without checking for content response errors
ngb -n 100 -c 10 --check-content false https://httpbin.org/user-agent

Sample Output

---- [2016-12-09 14:49:09.291] Starting Test on https://httpbin.org/user-agent [iteration 1] ----
request 0 done (721ms)
request 1 done (520ms)
request 2 done (172ms)
request 3 done (173ms)
request 4 done (170ms)
request 5 done (195ms)
request 6 done (170ms)
request 7 done (172ms)
request 8 done (174ms)
request 9 done (173ms)
Test URL: https://httpbin.org/user-agent
Average Duration: 173ms
Total Requests: 10
Total Errors: 0
Request Baseline: {
  "headers": {
    "server": "nginx",
    "date": "Fri, 09 Dec 2016 14:49:09 GMT",
    "content-type": "application/json",
    "content-length": "143",
    "connection": "keep-alive",
    "access-control-allow-origin": "*",
    "access-control-allow-credentials": "true"
  },
  "length": 143,
  "hash": "81a6e251177ab0488dbc7fda4384327f5ac8ccde"
}
Test Options: {
  "concurrent": 1,
  "total": 10,
  "iterations": 3,
  "delay": 1,
  "timeout": 10000,
  "progress": true,
  "checkContent": true,
  "urls": [
    "https://httpbin.org/user-agent"
  ],
  "method": "GET",
  "content": null,
  "headers": {
    "Accept-Encoding": "gzip",
    "Accept": "*/*",
    "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36"
  }
}
---- [2016-12-09 14:49:11.940] Ended Test on https://httpbin.org/user-agent [iteration 1] ----
---- Delaying next iteration for 1 seconds ----
---- [2016-12-09 14:49:12.944] Starting Test on https://httpbin.org/user-agent [iteration 2] ----
request 0 done (736ms)
request 1 done (521ms)
request 2 done (179ms)
request 3 done (169ms)
request 4 done (179ms)
request 5 done (170ms)
request 6 done (179ms)
request 7 done (315ms)
request 8 done (182ms)
request 9 done (172ms)
Test URL: https://httpbin.org/user-agent
Average Duration: 172ms
Total Requests: 10
Total Errors: 0
Request Baseline: {
  "headers": {
    "server": "nginx",
    "date": "Fri, 09 Dec 2016 14:49:13 GMT",
    "content-type": "application/json",
    "content-length": "143",
    "connection": "keep-alive",
    "access-control-allow-origin": "*",
    "access-control-allow-credentials": "true"
  },
  "length": 143,
  "hash": "81a6e251177ab0488dbc7fda4384327f5ac8ccde"
}
Test Options: {
  "concurrent": 1,
  "total": 10,
  "iterations": 3,
  "delay": 1,
  "timeout": 10000,
  "progress": true,
  "checkContent": true,
  "urls": [
    "https://httpbin.org/user-agent"
  ],
  "method": "GET",
  "content": null,
  "headers": {
    "Accept-Encoding": "gzip",
    "Accept": "*/*",
    "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36"
  }
}
---- [2016-12-09 14:49:15.746] Ended Test on https://httpbin.org/user-agent [iteration 2] ----
---- Delaying next iteration for 1 seconds ----
---- [2016-12-09 14:49:16.751] Starting Test on https://httpbin.org/user-agent [iteration 3] ----
request 0 done (827ms)
request 1 done (515ms)
request 2 done (180ms)
request 3 done (173ms)
request 4 done (183ms)
request 5 done (196ms)
request 6 done (181ms)
request 7 done (247ms)
request 8 done (182ms)
request 9 done (171ms)
Test URL: https://httpbin.org/user-agent
Average Duration: 171ms
Total Requests: 10
Total Errors: 0
Request Baseline: {
  "headers": {
    "server": "nginx",
    "date": "Fri, 09 Dec 2016 14:49:17 GMT",
    "content-type": "application/json",
    "content-length": "143",
    "connection": "keep-alive",
    "access-control-allow-origin": "*",
    "access-control-allow-credentials": "true"
  },
  "length": 143,
  "hash": "81a6e251177ab0488dbc7fda4384327f5ac8ccde"
}
Test Options: {
  "concurrent": 1,
  "total": 10,
  "iterations": 3,
  "delay": 1,
  "timeout": 10000,
  "progress": true,
  "checkContent": true,
  "urls": [
    "https://httpbin.org/user-agent"
  ],
  "method": "GET",
  "content": null,
  "headers": {
    "Accept-Encoding": "gzip",
    "Accept": "*/*",
    "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36"
  }
}
---- [2016-12-09 14:49:19.608] Ended Test on https://httpbin.org/user-agent [iteration 3] ----

License

The MIT License (MIT)

Copyright (c) 2016 Capriza

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.