{"id":17968630,"url":"https://github.com/bchavez/bugtrap","last_synced_at":"2025-11-03T19:01:51.859Z","repository":{"id":3569295,"uuid":"4631441","full_name":"bchavez/BugTrap","owner":"bchavez","description":":beetle: BugTrap: Catch unhandled exceptions in unmanaged and managed .NET code.","archived":false,"fork":false,"pushed_at":"2025-01-07T22:24:31.000Z","size":7519,"stargazers_count":172,"open_issues_count":12,"forks_count":81,"subscribers_count":29,"default_branch":"master","last_synced_at":"2025-04-03T23:09:09.209Z","etag":null,"topics":["bugreport","c-plus-plus","crash-reports","dotnet","exception-handler","exceptions"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bchavez.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-06-11T23:48:08.000Z","updated_at":"2025-04-01T20:04:06.000Z","dependencies_parsed_at":"2025-02-04T23:40:14.193Z","dependency_job_id":null,"html_url":"https://github.com/bchavez/BugTrap","commit_stats":{"total_commits":123,"total_committers":10,"mean_commits":12.3,"dds":0.4878048780487805,"last_synced_commit":"213c2ca93d7502ad4676355b38f9a7369433d9a8"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bchavez%2FBugTrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bchavez%2FBugTrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bchavez%2FBugTrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bchavez%2FBugTrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bchavez","download_url":"https://codeload.github.com/bchavez/BugTrap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248625479,"owners_count":21135512,"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":["bugreport","c-plus-plus","crash-reports","dotnet","exception-handler","exceptions"],"created_at":"2024-10-29T14:41:02.607Z","updated_at":"2025-11-03T19:01:46.789Z","avatar_url":"https://github.com/bchavez.png","language":"C++","readme":"[![Build status](https://ci.appveyor.com/api/projects/status/73nrgph9by0pgeb0?svg=true)](https://ci.appveyor.com/project/bchavez/bugtrap) [![Release](https://img.shields.io/github/release/bchavez/BugTrap.svg)](https://github.com/bchavez/BugTrap/releases) [![License](https://img.shields.io/github/license/bchavez/BugTrap.svg)](https://raw.githubusercontent.com/bchavez/BugTrap/master/LICENSE)\n\n# BugTrap\n\nBugTrap is a tool to catch unhandled exceptions in **unmanaged** and **managed** .NET code. BugTrap also supports sending crash reports to a remote server for analysis.\n\nThe original author, Maksim Pyatkovskiy, has a great [article about BugTrap on CodeProject](http://www.codeproject.com/Articles/14618/Catch-All-Bugs-with-BugTrap) that goes into detail about how BugTrap is used.\n\nThe BugTrap source code and binaries in this repository are granted by the original author under the MIT license. In other words, you're free to use BugTrap in commercial and non-commercial applications.\n\n## Download \u0026 Install\nCheck the releases section in this repository for the latest builds:\n[**BugTrap.zip**](https://github.com/bchavez/BugTrap/releases) contains all BugTrap components required for Win32/x64 projects:\n\n* `BugTrap[U][D][N][-x64].dll` - BugTrap DLL module.\n* `BugTrap[U][D][N][-x64].lib` - BugTrap library file used by linker.\n  * **`[U]`** - Unicode aware version has 'U' letter. ANSI version doesn't have 'U' letter.\n  * **`[D]`** - Debug version has 'D' letter. Release version doesn't have 'D' letter.\n  * **`[N]`** - managed (.NET) version has 'N' letter. Native version doesn't have 'N' letter.\n  * **`[-x64]`** - 64 bit version for AMD-64 platform has '-x64' suffix. x86 version doesn't have this suffix.\n* `dbghelp.dll` - DbgHelp library (see [\"BugTrap Developer's Guide\"](https://raw.githubusercontent.com/bchavez/BugTrap/master/doc/BugTrap.pdf)                                      for details).\n* `BugTrap.h` - Header file with BugTrap API definitions.\n* `BTTrace.h` - C++ wrapper of custom logging functions.\n* `BTAtlWindow.h` - ATL/WTL exception handlers.\n* `BTMfcWindow.h` - MFC exception handlers.\n* `CrashExplorer.exe` - MAP file analyzer.\n* `BugTrap.chm` - BugTrap 1.x Specification.\n\nPlease see [\"BugTrap Developer's Guide\"](https://raw.githubusercontent.com/bchavez/BugTrap/master/doc/BugTrap.pdf) for additional information about file types used by BugTrap for Win32/x64.\n\n### BugTrap Server Application\nInside [**BugTrap.zip**](https://github.com/bchavez/BugTrap/releases), you'll also find the following server applications for server side acceptance of crash reports:\n* `Server\\BugTrapServer` - BugTrap Server Windows Service in C#\n* `Server\\BugTrapWebServer` - BugTrap Web Server in ASP.NET\n* `Server\\JBugTrapServer` - BugTrap Server in Java\n\nYou can choose any server technology to begin accepting crash reports from BugTrap clients. Open and edit `*.config` files for various configuration parameters.\n\n## Screenshots\n![Screenshot](https://raw.githubusercontent.com/bchavez/BugTrap/master/doc/Screenshot2.png)\n![Screenshot](https://raw.githubusercontent.com/bchavez/BugTrap/master/doc/Screenshot3.png)\n![Screenshot](https://raw.githubusercontent.com/bchavez/BugTrap/master/doc/Screenshot4.png)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbchavez%2Fbugtrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbchavez%2Fbugtrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbchavez%2Fbugtrap/lists"}