An interactive web companion tool for ARC Raiders that helps you make instant loot decisions. Based on the V3 Recycling Cheat Sheet by u/pRoDeeD.
- Instant Search: Type any item name to quickly find it
- ROI Calculator: See at a glance whether to recycle or sell
- Smart Categories: Filter by Safe to Recycle, Quests, Expedition Project
- Visual Indicators: Color-coded recommendations (green = recycle, red = sell)
- Best Donors: Find the most efficient items to recycle for specific components
- Priority System: Components organized by importance (Essential, Priority, High-Tier)
- Yield Information: See exactly how many components each item produces
- All 7 Benches: Gear, Gunsmith, Medical Lab, Refiner, Utility, Explosives, Scrappy
- Level Tracking: See requirements for each upgrade level
- ROI Data: Know which upgrade items are worth recycling
# Install dependencies
bun install
# Run development server
bun run dev
# Build for production
bun run build
# Start production server
bun startOpen http://localhost:3000 in your browser.
- Framework: Next.js 15 with App Router
- Language: TypeScript
- Styling: Tailwind CSS
- Runtime: Bun
- Build: Turbopack
- Use the search bar to type any item name (e.g., "Ion Sputter", "Battery")
- Check the ROI percentage:
- Green (+%): Recycling gives MORE value than selling ✅
- Gray (0%): Equal value either way ⚖️
- Orange (-10% to -30%): Small loss if recycled
⚠️ - Red (-40%+): Big loss if recycled - SELL! ❌
- Switch to the "Components" tab
- Search for the component you need
- See the best items to recycle to get that component
- Compare yields to find the most efficient sources
- Switch to the "Workshops" tab
- Browse all 7 workshop benches
- See exactly what items you need for each upgrade level
- Plan your looting priorities accordingly
- Selling beats scrapping most of the time
- High-priority components carry penalties of -40% to -60%
- Recycling during raids only returns ~50% of components - wait for Speranza
- Don't craft for profit - you'll lose value
Recycling ROI Data: All recycling calculations from the V3 Looting and Recycling Cheat Sheet by u/pRoDeeD. Last synced: December 26, 2025
Item Database: Item images and rarity data available from the ARC Raiders Database API
- 465+ items with images
- Rarity information (Common → Legendary)
- Regular community updates
Integration: See API_INTEGRATION.md for instructions on adding live item data, images, and rarity badges to the site.
# Build the site
bun run build
# Deploy to Cloudflare Pages
# Make sure to unset any local environment tokens first
unset CLOUDFLARE_API_TOKEN
npx wrangler pages deploy outThe built site in the out folder can be deployed to any static hosting:
- Vercel
- Netlify
- GitHub Pages
- AWS S3 + CloudFront
# Project structure
arc-scrap/
├── app/ # Next.js app directory
│ ├── page.tsx # Main page with all features
│ ├── layout.tsx # Root layout
│ └── globals.css # Global styles
├── components/ # Reusable React components
│ ├── SearchBar.tsx
│ ├── FilterTabs.tsx
│ ├── ItemCard.tsx
│ └── ComponentCard.tsx
├── data/ # JSON data files
│ ├── items.json
│ ├── components.json
│ └── workshops.json
└── lib/ # Utility functions
└── types.ts # TypeScript typesThis is a community tool! If you find errors in the data or have suggestions:
- Check the original cheat sheet at ko-fi.com/prodeed
- Open an issue with the correction
- Submit a PR with updated data
Data and original cheat sheet by u/pRoDeeD. Interactive tool built as a community resource.
- Original Cheat Sheet: u/pRoDeeD
- Game: ARC Raiders by Embark Studios
- Interactive Tool: Built with Next.js and TypeScript