Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Locust | 22,135 | 35 | 69 | 6 days ago | 247 | July 25, 2023 | 17 | mit | Python | |
Write scalable load tests in plain Python 🚗💨 | ||||||||||
K6 | 21,538 | 200 | 12 hours ago | 534 | June 19, 2023 | 459 | agpl-3.0 | Go | ||
A modern load testing tool, using Go and JavaScript - https://k6.io | ||||||||||
Artillery | 6,942 | 171 | 70 | 13 hours ago | 173 | August 04, 2023 | 406 | mpl-2.0 | JavaScript | |
Load testing at cloud-scale, as easy as 1-2-3. Serverless & distributed out-of-the-box. Never fail to scale! | ||||||||||
Bombardier | 4,626 | 11 hours ago | 10 | October 15, 2020 | 17 | mit | Go | |||
Fast cross-platform HTTP benchmarking tool written in Go | ||||||||||
Plow | 3,402 | 4 months ago | 13 | July 28, 2022 | 16 | apache-2.0 | Go | |||
A high-performance HTTP benchmarking tool that includes a real-time web UI and terminal display | ||||||||||
Loadtest | 2,466 | 219 | 84 | 12 hours ago | 109 | August 21, 2023 | 1 | mit | JavaScript | |
Runs a load test on the selected URL. Fast and easy to use. Can be integrated in your own workflow using the API. | ||||||||||
Yandex Tank | 2,327 | 3 | 4 days ago | 40 | September 10, 2021 | 82 | lgpl-2.1 | Python | ||
Load and performance benchmark tool | ||||||||||
Taurus | 1,887 | 2 | 16 hours ago | 2 | January 29, 2019 | 10 | apache-2.0 | Python | ||
Automation-friendly framework for Continuous Testing by | ||||||||||
Cassowary | 662 | 5 months ago | 20 | June 14, 2022 | 6 | mit | Go | |||
:rocket: Modern cross-platform HTTP load-testing tool written in Go | ||||||||||
Awesome Jmeter | 628 | 2 months ago | 1 | cc-by-4.0 | HTML | |||||
A collection of resources covering different aspects of JMeter usage. |
Modern load testing for developers and testers in the DevOps era.
Download · Documentation · Community Forum
k6 is a modern load-testing tool, built on our years of experience in the performance and testing industries. It's built to be powerful, extensible, and full-featured. The key design goal is to provide the best developer experience.
Its core features are:
This is what load testing looks like in the 21st century.
import http from "k6/http";
import { check, sleep } from "k6";
// Test configuration
export const options = {
thresholds: {
// Assert that 99% of requests finish within 3000ms.
http_req_duration: ["p(99) < 3000"],
},
// Ramp the number of virtual users up and down
stages: [
{ duration: "30s", target: 15 },
{ duration: "1m", target: 15 },
{ duration: "20s", target: 0 },
],
};
// Simulated user behavior
export default function () {
let res = http.get("https://test-api.k6.io/public/crocodiles/1/");
// Validate response status
check(res, { "status was 200": (r) => r.status == 200 });
sleep(1);
}
You can run scripts like this on the CLI, or in your CI, or across a Kubernetes cluster.
The docs cover all aspects of using k6. Some highlights include:
These links barely scratch the surface! If you're looking for conceptual information, you can read about Test types, Test strategies, or one of the many informative Blog posts.
Our team is dedicated to continuously improving and providing the best user experience possible. The public roadmap covers user-oriented features, UX improvements and JavaScript support that our team will focus on. Remember that timeframes and priorities may shift, but we believe it's important to share our vision.
We hope it provides a clear overview of our plans for future development. We welcome feedback, corrections, and suggestions via GitHub to make it more comprehensive, accessible, and valuable for the community.
If you want to contribute or help with the development of k6, start by reading CONTRIBUTING.md. Before you start coding, it might be a good idea to first discuss your plans and implementation details with the k6 maintainers—especially when it comes to big changes and features. You can do this in the GitHub issue for the problem you're solving (create one if it doesn't exist).
Note: To disclose security issues, refer to SECURITY.md.
To get help, report bugs, suggest features, and discuss k6 with others, refer to SUPPORT.md.
k6 is distributed under the AGPL-3.0 license.