Skip to main content

Tachyon Quickstart

Zero-Trust Tunnels for Teams. Share local development servers with built-in authentication.

Installation

npm install -g @dotsetlabs/tachyon
Or use directly with npx:
npx @dotsetlabs/tachyon share 3000

Sign In

tcn login
Sign in with GitHub or Google SSO.

Share a Local Port

tcn share 3000
You’ll get a public URL like:
https://abc123.tunnel.dotsetlabs.dev

Access Control

By default, tunnels require authentication. Share with your team:
# Public (no auth required)
tcn share 3000 --public

# Allow specific emails
tcn share 3000 --allow [email protected]

# Custom subdomain (Pro)
tcn share 3000 --subdomain my-app

Projects

Organize tunnels in projects for the dashboard:
# Create a new project
tcn share 3000 --new-project "My App"

# Use existing project
tcn share 3000 --project "My App"

# Standalone (no project)
tcn share 3000 --standalone

Request Inspector

Inspect incoming requests in real-time:
tcn share 3000 --inspect
Opens the inspector at http://localhost:4040.

Next Steps