
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
load-generator
Advanced tools
Generates http(s) load.
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__}
--url
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
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
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
boolean
false
Output in machine friendly format, no UI.
--pause
int
0
Pause between each request per worker in millisecons.
--timeout
int
3000
Request timeout in milliseconds, set to 0 to use system default.
-w
, --workersint
2
Amount of parallell requesting workers.
-h
, --help
Displays help text.
-v
, --version
Displays version.
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.
FAQs
Generates http(s) load.
We found that load-generator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.