{"id":13398108,"url":"https://github.com/libevent/libevent","last_synced_at":"2025-05-13T10:58:52.371Z","repository":{"id":37334997,"uuid":"1856976","full_name":"libevent/libevent","owner":"libevent","description":"Event notification library","archived":false,"fork":false,"pushed_at":"2025-03-01T14:31:25.000Z","size":12808,"stargazers_count":11488,"open_issues_count":126,"forks_count":3429,"subscribers_count":472,"default_branch":"master","last_synced_at":"2025-05-13T10:58:37.589Z","etag":null,"topics":["async","c","cross-platform","networking"],"latest_commit_sha":null,"homepage":"https://libevent.org","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/libevent.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2011-06-06T21:42:50.000Z","updated_at":"2025-05-13T03:21:44.000Z","dependencies_parsed_at":"2023-10-13T12:49:58.984Z","dependency_job_id":"e1ee023c-93df-4923-aad7-1dfd5799aee6","html_url":"https://github.com/libevent/libevent","commit_stats":{"total_commits":4430,"total_committers":334,"mean_commits":"13.263473053892216","dds":0.5990970654627539,"last_synced_commit":"6d8c38afe7c887c381abf2f174ca0815b42c56cc"},"previous_names":[],"tags_count":61,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libevent%2Flibevent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libevent%2Flibevent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libevent%2Flibevent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libevent%2Flibevent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/libevent","download_url":"https://codeload.github.com/libevent/libevent/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253929359,"owners_count":21985802,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["async","c","cross-platform","networking"],"created_at":"2024-07-30T19:00:17.015Z","updated_at":"2025-05-13T10:58:52.290Z","avatar_url":"https://github.com/libevent.png","language":"C","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://libevent.org/images/libevent3.png\" alt=\"libevent logo\"/\u003e\n\u003c/p\u003e\n\n\n\n[![CI](https://github.com/libevent/libevent/actions/workflows/build.yml/badge.svg)](https://github.com/libevent/libevent/actions/workflows/build.yml)\n[![Coverage Status](https://coveralls.io/repos/github/libevent/libevent/badge.svg)](https://coveralls.io/github/libevent/libevent)\n[![Join the chat at https://gitter.im/libevent/libevent](https://badges.gitter.im/libevent/libevent.svg)](https://gitter.im/libevent/libevent?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n[![doxygen](https://img.shields.io/badge/doxygen-documentation-blue.svg)](https://libevent.org/doc)\n[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/libevent/libevent/badge)](https://securityscorecards.dev/viewer/?uri=github.com/libevent/libevent)\n\n\n\n# 1. BUILDING AND INSTALLATION\n\n## CMake (Unix)\n\n```sh\nmkdir build \u0026\u0026 cd build\ncmake ..     # Default to Unix Makefiles.\nmake\nmake verify  # (optional)\n```\n\nSee [Documentation/Building#Building on Unix using CMake](/Documentation/Building.md#building-on-unix-cmake) for more information.\n\n## CMake (Windows)\n\nInstall CMake: \u003chttps://cmake.org/\u003e\n\n```sh\nmd build \u0026\u0026 cd build\ncmake -G \"Visual Studio 10\" ..   # Or use any generator you want to use. Run cmake --help for a list\ncmake --build . --config Release # Or \"start libevent.sln\" and build with menu in Visual Studio.\n```\n\nSee [Documentation/Building#Building on Windows](/Documentation/Building.md#building-on-windows) for more information.\n\n## Package Managers\n\nYou can download and install libevent using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager:\n```sh\ngit clone https://github.com/Microsoft/vcpkg.git\ncd vcpkg\n./bootstrap-vcpkg.sh\n./vcpkg integrate install\n./vcpkg install libevent\n```\n\nThe libevent port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.\n\n## Autoconf\n\n*Note, since 2.2 it is deprecated*\n\n```sh\n./configure\nmake\nmake verify   # (optional)\nsudo make install\n```\n\nSee [Documentation/Building#Autoconf](/Documentation/Building.md#autotools-deprecated) for more information.\n\n# 2. USEFUL LINKS:\n\nFor the latest released version of Libevent, see the official website at\n\u003chttps://libevent.org/\u003e .\n\nThere's a pretty good work-in-progress manual up at\n   \u003chttp://www.wangafu.net/~nickm/libevent-book/\u003e .\n\nFor the latest development versions of Libevent, access our Git repository\nvia\n\n```sh\n$ git clone https://github.com/libevent/libevent.git\n```\n\nYou can browse the git repository online at:\n\n\u003chttps://github.com/libevent/libevent\u003e\n\nTo report bugs, issues, or ask for new features:\n\n__Patches__: https://github.com/libevent/libevent/pulls\n\u003e OK, those are not really _patches_. You fork, modify, and hit the \"Create Pull Request\" button.\n\u003e You can still submit normal git patches via the mailing list.\n\n__Bugs, Features [RFC], and Issues__: https://github.com/libevent/libevent/issues\n\u003e Or you can do it via the mailing list.\n\nThere's also a libevent-users mailing list for talking about Libevent\nuse and development: \n\n\u003chttps://archives.seul.org/libevent/users/\u003e\n\n# 3. ACKNOWLEDGMENTS\n\nThe [following people](/CONTRIBUTORS.md) have helped with suggestions, ideas,\ncode or fixing bugs.\n","funding_links":[],"categories":["C","Real-World Projects","C/C++ 程序设计","网络编程"],"sub_categories":["Data Processing \u0026 Storage","网络服务_其他"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibevent%2Flibevent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibevent%2Flibevent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibevent%2Flibevent/lists"}