Quick Start

Get up and running with Vapor in 5 minutes

Quick Start

This guide walks you through your first session with Vapor.

1. Configure Your Browser

Set your browser to use Vapor as a proxy:

  • Proxy Address: localhost
  • Port: 8080

Most browsers support system proxy settings, or you can use a browser extension like FoxyProxy.

2. Capture Traffic

  1. Open Vapor and ensure the proxy is running (green indicator)
  2. Browse to any website in your configured browser
  3. Watch requests appear in the Proxy view

3. Inspect a Request

Click any request in the Proxy view to see:

  • Full request headers and body
  • Response headers and body
  • Timing information
  • WebSocket messages (if applicable)

4. Send to Repeater

  1. Right-click a request
  2. Select Send to Repeater
  3. The request opens in a new Repeater tab

5. Try AI Tab Completion

In the Repeater, start typing a header name:

GET /api/users HTTP/1.1
Host: example.com
Auth

Press Tab to see AI-powered suggestions based on the request context.

Next Steps