Skip to content

Quick Start

Get your first tunnel running in under 60 seconds.

1. Start Your Local App

First, make sure you have a local application running. For example:

# Simple HTTP server on port 3000
python -m http.server 3000

2. Expose It

In another terminal, expose your local app:

xpoz expose http 3000

You'll see output like:

✓ Connected to tunnel server
✓ Tunnel established
→ Local:  http://localhost:3000
→ Public: https://abc123.xpoz.xyz

Press Ctrl+C to stop the tunnel

3. Test It

Open the public URL in your browser or test with curl:

curl https://abc123.xpoz.xyz

That's it! Your local app is now accessible from anywhere on the internet.

Common Use Cases

Web Development

# Expose your dev server
xpoz expose http 3000

API Testing

# Share your API with teammates
xpoz expose http 8080

Webhook Testing

# Receive webhooks locally
xpoz expose http 4000

Next Steps