https://github.com/haixuxu/wct
web concurrency test tools
https://github.com/haixuxu/wct
benchmark concurrency http nodejs
Last synced: 8 months ago
JSON representation
web concurrency test tools
- Host: GitHub
- URL: https://github.com/haixuxu/wct
- Owner: haixuxu
- Created: 2022-12-21T11:00:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-18T07:06:47.000Z (about 3 years ago)
- Last Synced: 2025-04-07T18:02:22.314Z (about 1 year ago)
- Topics: benchmark, concurrency, http, nodejs
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## wct
web concurrency test
## example
```js
var workbench = new WebApiBench({
url: "http://127.0.0.1:8888/",
vuser: 10, // concurrency
timeSpace: 2, //
runSecs: 5 * 60, // runing time
slowStart: true, // slow start vuser
});
workbench.start();
```