replay 0.1.2

A simple HTTP request replay tool
replay-0.1.2 is not a library.

Replay

ci downloads crates

This tool acts as a transparent HTTP proxy that intercepts and records all incoming and outgoing requests and responses. You can later replay these captured interactions to mock the real API without needing live network access โ€” ideal for:

  • End-to-end tests
  • CI environments
  • Offline development
  • Contract testing

Preview

๐Ÿšš Installation

cargo-binstall replay

โœจ Features

  • ๐Ÿงฒ Record HTTP traffic in real time
  • ๐Ÿงช Replay and mock previously recorded requests
  • ๐Ÿ› ๏ธ Supports REST, GraphQL, and any HTTP-based API
  • ๐Ÿ“ฆ Store interactions locally
  • โšก Fast and lightweight proxy implementation

๐Ÿ”ง Example Use Case

  1. Run your app through the proxy once to record real API interactions.
  2. Save the recorded sessions.
  3. Switch to mock mode for testing โ€” no real API calls needed.