libevent/libevent

Event notification library

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 33 minutes ago
Added to GitGenius on September 5th, 2026
Created on June 6th, 2011
Open Issues & Pull Requests: 154 (+0)
GitHub issues: Enabled
Number of forks: 3,467
Total Stargazers: 11,948 (+0)
Total Subscribers: 451 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 5.5 days
Mean response time: 123.4 days
90th percentile: 241.8 days
Tracked items: 103

How this project is maintained

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

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 44
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 537 days
Stale 30+ days: 40
Stale 90+ days: 36

Recent activity

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

Top labels

  • type:q (13)
  • status:unconfirmed (12)
  • ci (7)
  • prio:accepting-patches (6)
  • os:windows (5)
  • subsystem:dns (5)
  • subsystem:http (5)
  • releases (4)

Detailed Description

Libevent is an event notification library that provides asynchronous I/O and event-driven programming capabilities for C applications.

The library solves the problem of managing multiple concurrent I/O operations and events across different platforms by abstracting away platform-specific details. It offers a unified API that works with various event notification mechanisms, allowing developers to write portable, high-performance networking and asynchronous code without worrying about whether the underlying system uses select, poll, epoll, kqueue, or other backend mechanisms.

Libevent suits projects that require cross-platform asynchronous networking, such as servers, clients, and event-driven applications. It is particularly valuable for developers building systems that need to handle many concurrent connections or events efficiently. The library is available through standard package managers including vcpkg, making integration straightforward. The project supports multiple build systems, with CMake being the current standard for both Unix and Windows platforms, while Autoconf is deprecated as of version 2.2.

Development activity shows consistent maintenance with established channels for community engagement. The project accepts contributions through pull requests on GitHub and maintains a mailing list for user discussion and development coordination. Bug reports, feature requests, and issues are tracked on GitHub, and the team also accepts traditional git patches submitted via the mailing list. Documentation is actively maintained, including a work-in-progress manual and building guides that cover platform-specific installation procedures.