---
description:
globs:
alwaysApply: true
---
# Fetch Worker Project Overview

This project is a Cloudflare Worker that acts as a fetch API proxy/debugger. It accepts JSON in fetch format, executes the actual request, and returns the response.

## Structure
- [src/index.ts](mdc:src/index.ts) - Main entry point for the worker
- [src/handlers/](mdc:src/handlers/) - Request handlers
- [src/utils/](mdc:src/utils/) - Utility functions
- [wrangler.jsonc](mdc:wrangler.jsonc) - Cloudflare Workers configuration

## Development
- Uses Bun as the JavaScript runtime
- Run `bun run dev` to start a local development server
- Run `bun run deploy` to deploy to Cloudflare
