# Reaper **Repository Path**: mirrors_getsentry/Reaper ## Basic Information - **Project Name**: Reaper - **Description**: A tool for detecting unused code - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-25 - **Last Updated**: 2026-02-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Reaper A framework for detecting dead code at runtime - Reaper is an SDK added to your app to report which Swift and Objective-C types were used for each user session. It supports all classes written in Objective-C, most non-generic Swift classes, and some Swift structs/enums. The framework detects the set of classes that are used, and the `Scripts` directory in this repo contains a program to determine the set of all possible types that reaper can detect. The difference of these sets are the unused types. See additional [resources](#resources) below. ## Installation ### Swift Package Manager Add Reaper as a dependency with Swift package manager using the URL https://github.com/getsentry/Reaper-iOS.git ### CocoaPods Add Reaper to your Podfile: ```Ruby target 'MyApp' do pod 'Reaper', '~> 2.0.1' end ``` ### XCFramework Download the latest XCFramework from [Github releases](https://github.com/EmergeTools/Reaper/releases). ## Setup Start the SDK at app launch by adding the following code: ```Swift import Reaper ... EMGReaper.sharedInstance().start { types in // Handle list of used types } ``` ## Determining all types Run `tsc ./Scripts/main.ts` then `node ./Scripts/main.ts PATH_TO_YOUR_APP.app` ## Resources - [Example backend](https://github.com/getsentry/reaper-server) - [Performance & Size Impact](https://docs.emergetools.com/docs/reaper#performance-impact) - [Open sourcing Reaper](https://blog.sentry.io/an-open-source-sdk-for-finding-dead-code/) - [Launch Blog Post](https://www.emergetools.com/blog/posts/dead-code-detection-with-reaper). - [Reaper for Android](https://github.com/EmergeTools/emerge-android/tree/main/reaper)