Artillery
Medium — good to knowTesting
ELI5 — The Vibe Check
Artillery is like k6's more enterprise-friendly cousin who writes tests in YAML instead of code. Good news: non-engineers can write scenarios. Bad news: YAML. It runs tests from AWS Lambda so you can simulate traffic from actual cloud infrastructure instead of your laptop struggling with 500 threads.
Real Talk
undefined
When You'll Hear This
undefined
Related Terms
Gatling
Gatling writes load tests in Scala DSL that looks almost like English: 'exec(http(get users)) pause 1 second'.
advancedTesting
k6
k6 lets you write load tests in JavaScript, which is either convenient or deeply ironic depending on your views on JavaScript performance.
intermediateTesting
Locust
Locust is the Pythonista's load tester — write user behavior as Python classes, hit start, and watch the real-time web dashboard show your server slowly dy...
beginnerTesting