dev-master
9999999-devA small app that sends some load to a web application.
MIT
The Requires
by Vamsi Krishna B
Wallogit.com
2017 © Pedro Peláez
A small app that sends some load to a web application.
vex is a small PHP app that sends some load to a web application, (*1)
, (*2)
Download the latest release from GitHub Releases., (*3)
Or require globally using Composer with composer global require vamsiikrishna/vex. This will automatically add the vex binary to your path., (*4)
Usage:
vex [options] [--] <url> [<n>] [<c>], (*5)
Arguments:, (*6)
url The URL to which the requests should be sent n Number of requests to be made [default: 1] c Concurrency [default: 1]
Options:, (*7)
-m, --method[=METHOD] HTTP Method [default: "GET"] -H, --headers[=HEADERS] Headers (multiple values allowed) -d, --body[=BODY] Request body
Example:, (*8)
http://127.0.0.1:8000
./vex.phar vex http://127.0.0.1:8000 1000 10, (*9)
http://127.0.0.1:8000 with custom headers and body./vex.phar vex http://127.0.0.1:8000 1000 10 \
-m "POST" \
-H "accept:application/json, text/plain, */*" \
-H "accept-language:en-IN,en-GB;q=0.8,en-US;q=0.6,en;q=0.4" \
-d "{\"message\": \"Hello world! Your JustAPIs instance is running correctly.\"}"
A small app that sends some load to a web application.
MIT