Quickstart
Get a tunnel running in under 60 seconds.
1. Install the CLI
bash
# npm (recommended)# Homebrew (macOS/Linux) brew install jams24/serverme/deployzy
# Or download directly curl -fsSL https://raw.githubusercontent.com/jams24/serverme/main/deploy/get.sh | sh ```
2. Log in
bash
# Opens your browser to sign in with Google
deployzy loginOr use an API key from your dashboard:
bash
deployzy authtoken sm_live_your_key_here3. Start a tunnel
bash
deployzy http 3000That's it. You'll see:
code
Deployzy — Expose localhost to the world● Connected
Version 1.0.0 OS darwin/arm64 Inspect http://127.0.0.1:4040
HTTP https://a1b2c3d4.deployzy.com → localhost:3000
Press Ctrl+C to stop ```
Your local server is now live at the public URL. Open the Inspector at http://127.0.0.1:4040 to watch requests flow through in real-time.
Tip: Add
--subdomain myapp to get a custom subdomain like https://myapp.deployzy.com.