Mekong Tunnel Logo
MEKONG
v1.4.0

v1.4.0

View on GitHub

What's New in v1.4.0

Custom Subdomain

Request a named URL instead of a random one:

mekong 8080 --subdomain myapp
# โ†’ https://myapp.mekongtunnel.dev
# If it's taken, the server suggests the next available one: myapp-a1b2

Multi-Port

Expose multiple ports at once โ€” each gets its own URL:

mekong 3000 8080

Daemon Mode

Run in the background and free up your terminal:

mekong -d 3000        # Start in the background
mekong status         # Check status
mekong status 3000    # Filter by port
mekong stop           # Stop all tunnels

Logs are saved to ~/.mekong/mekong.log.

Web Dashboard

Live admin dashboard available at http://127.0.0.1:9090/ โ€” auto-refreshes every 3 seconds and shows active tunnels with uptime and request counts.

The JSON API has been moved to /api/stats.


Install / Update

macOS (Apple Silicon)

sudo curl -L https://github.com/MuyleangIng/MekongTunnel/releases/download/v1.4.0/mekong-darwin-arm64 -o /usr/local/bin/mekong
sudo chmod +x /usr/local/bin/mekong
xattr -d com.apple.quarantine /usr/local/bin/mekong

macOS (Intel)

sudo curl -L https://github.com/MuyleangIng/MekongTunnel/releases/download/v1.4.0/mekong-darwin-amd64 -o /usr/local/bin/mekong
sudo chmod +x /usr/local/bin/mekong
xattr -d com.apple.quarantine /usr/local/bin/mekong

Linux (amd64)

sudo curl -L https://github.com/MuyleangIng/MekongTunnel/releases/download/v1.4.0/mekong-linux-amd64 -o /usr/local/bin/mekong
sudo chmod +x /usr/local/bin/mekong

Or, if you already have Mekong installed:

mekong update