grafana/k6 hiện có 31.3k sao trên GitHub, viết chủ yếu bằng Go. A modern load testing tool, using Go and JavaScript
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
Modern load testing for developers and testers in the DevOps era.
Download ·
Documentation ·
Community Forum ·
Public Roadmap
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:
Configurable load generation. Even lower-end machines can simulate lots of traffic.
Tests as code. Reuse scripts, modularize logic, version control, and integrate tests with your CI.
A full-featured API. The scripting API is packed with features that help you simulate real application traffic.
An embedded JavaScript engine. The performance of Go, the scripting familiarity of JavaScript.
Multiple Protocol support. HTTP, WebSockets, gRPC, Browser, and more.
Large extension ecosystem. You can extend k6 to support your needs. And many people have already shared their extensions with the community! Explore the available extensions.
Flexible metrics storage and visualization. Summary statistics or granular metrics, exported to the service of your choice.
Native integration with Grafana cloud. SaaS solution for test execution, metrics correlation, data analysis, and more.
This is what load testing looks like in the 21st century.
Example script
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://quickpizza.grafana.com");
// 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.
[!NOTE]
Don't want to write code ?
We got you! Meet k6 Studio, a desktop application made to help you generate k6 scripts without having to touch code!
Documentation
The docs cover all aspects of using k6. Some highlights include:
Get Started. Install, run a test, inspect results.
HTTP requests. Have your virtual users use HTTP methods.
Or, check the other Protocols.
Thresholds. Set goals for your test, and codify your SLOs.
Options. Configure your load, duration, TLS certificates, and much, much more.
Scenarios.
Choose how to model your workload: open models, closed models, constant RPS, fixed iterations, and more.
Results output. Study, filter, and export your test results.
JavaScript API. Reference and examples of all k6 modules.
Extensions. Extend k6 for new protocols and use cases.
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.
Roadmap
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.
It's worth mentioning that we consider upvotes (thumbs-up) to be one of the essential metrics for determining community needs. If you want to show us the importance of a feature, please give it a thumbs-up.
Contribute
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.
Support
To get help, report bugs, suggest features, and discuss k6 with others, refer to SUPPORT.md.
grafana/k6 thuộc nhóm Automation trên TopGit, cùng 9 topic GitHub. Trang Trending và Topics liệt kê các repo cùng số sao và cùng ngôn ngữ để so sánh.
Đọc thêm về grafana/k6 ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/grafana/k6 là nguồn chính thức.
grafana/k6 có phải mã nguồn mở không?
Có — grafana/k6 phát hành theo license AGPL-3.0, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/grafana/k6.
grafana/k6 có trang demo không?
Dự án có trang chủ ở https://grafana.com/oss/k6/. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
grafana/k6 dùng license gì?
grafana/k6 phát hành theo license AGPL-3.0. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
grafana/k6 là gì?
grafana/k6 (grafana/k6) là dự án Go trên GitHub. Theo mô tả gốc: A modern load testing tool, using Go and JavaScript
Vì sao grafana/k6 được xếp vào nhóm Automation?
TopGit xếp grafana/k6 vào nhóm Automation dựa trên GitHub topics và mô tả của repo (gắn thẻ: "es6", "go", "golang"). Việc phân loại dựa trên metadata thật của repo, không phải đoán theo cảm tính biên tập.
Đọc đầy đủ README ở tab phía trên.
Chưa chắc k6 có hợp với bạn?
Để ChatGPT, Claude hoặc Perplexity tìm hiểu giúp — bấm bên dưới và xem AI nói gì về k6.