eclipse-vertx/vert.x

Vert.x is a tool-kit for building reactive applications on the JVM

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 48 minutes ago
Added to GitGenius on September 4th, 2026
Created on June 17th, 2011
Open Issues & Pull Requests: 226 (-1)
GitHub issues: Enabled
Number of forks: 2,113
Total Stargazers: 14,684 (+0)
Total Subscribers: 507 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 23.1 hours
Mean response time: 206.5 days
90th percentile: 754.0 days
Tracked items: 430

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 81% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 4% of issues opened in the past year have been closed. Three people close 91% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 83
New in 7 days: 1
Closed in 7 days: 2
Avg open age: 670 days
Stale 30+ days: 55
Stale 90+ days: 45

Recent activity

Opened in 7 days: 1
Closed in 7 days: 2
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • bug (201)
  • enhancement (117)
  • invalid (24)
  • question (17)
  • help wanted (6)
  • wontfix (4)
  • duplicate (3)
  • documentation (2)

Detailed Description

Vert.x is a toolkit for building reactive applications on the JVM.

Vert.x addresses the challenge of handling high concurrency and I/O-bound workloads by providing a non-blocking, event-driven architecture built on top of Netty. The core library offers low-level functionality including HTTP support with HTTP/2, TCP networking, file system access, and NIO-based operations. Applications built with Vert.x use an event loop model to process requests asynchronously, allowing a small number of threads to handle large numbers of concurrent connections without blocking.

Vert.x core is suitable for developers building high-performance server applications, microservices, and systems that need to handle significant concurrent load efficiently. The toolkit works well for I/O-heavy workloads where traditional thread-per-request models become resource-constrained. Vert.x core serves as the foundation for a broader ecosystem of components, so adopting it positions you to leverage additional Vert.x modules as your application grows. The project supports native transports on BSD and Linux for further performance optimization, and provides domain socket support on Linux for specialized networking scenarios.

The project maintains active development with comprehensive test coverage including standard unit tests, configurable HTTP and HTTPS port testing, native transport testing, and integration tests that verify behavior across differently configured JVM environments. Documentation is actively maintained and built as part of the standard development workflow.