https://github.com/strrl/shell-now
Share your terminal in the browser in seconds. eg. Vibe Coding with Claude Code / Gemini CLI on your iPad!
https://github.com/strrl/shell-now
claude-code cloudflare cloudflare-tunnel cloudflared devops devops-tools devtools gemini-cli go live-share remote-debugging remote-shell ttyd vibe-coding web-terminal webshell
Last synced: 22 days ago
JSON representation
Share your terminal in the browser in seconds. eg. Vibe Coding with Claude Code / Gemini CLI on your iPad!
- Host: GitHub
- URL: https://github.com/strrl/shell-now
- Owner: STRRL
- License: mit
- Created: 2025-05-06T03:35:20.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-27T23:23:04.000Z (11 months ago)
- Last Synced: 2026-03-14T09:57:01.678Z (2 months ago)
- Topics: claude-code, cloudflare, cloudflare-tunnel, cloudflared, devops, devops-tools, devtools, gemini-cli, go, live-share, remote-debugging, remote-shell, ttyd, vibe-coding, web-terminal, webshell
- Language: Go
- Homepage:
- Size: 41 KB
- Stars: 48
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Shell Now πβ‘
> Instant Web Terminal via `ttyd` + `cloudflared` β A one-click webshell for developers, educators, and hackers.
ShellNow is a tiny Go-powered CLI tool that helps you instantly start a temporary, publicly-accessible web terminal using [ttyd](https://github.com/tsl0922/ttyd) and [Cloudflare Quick Tunnels](https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/trycloudflare/).
Ideal for quick debugging, remote terminal sharing, and Linux teaching demos.
## π₯ Demo
[](https://www.youtube.com/watch?v=fB19R72xKTE&ab_channel=strrlthedev)
*It's a 3 min video, and it will take you 1.5 min with 2x speed, or 1.8 seconds at 100x speed.*
## β¨ Features
- π One command to launch a public web shell
- π§© Automatically downloads `ttyd` and `cloudflared` (cross-platform)
- π Optional password authentication
- π» Runs any shell or custom command (e.g. `htop`, `matrix`, `bash`)
## π¦ Installation
### Homebrew (macOS)
```bash
# Add this tap to your Homebrew
brew tap strrl/collective
# Install shell-now
brew install shell-now
# Start shell-now
shell-now
```
### Docker
```bash
docker run cr.strrl.dev/strrl/shell-now:latest
```
**Note:** The Docker version runs in an isolated container environment separate from your host system. Use this for demos or when you want a sandboxed shell experience.
### Native App Alternative
Are you an Apple fanboy and prefer a native app? See: https://github.com/amantus-ai/vibetunnel
### Quick Install
```bash
# Auto-detect OS and architecture
OS=$(uname -s); ARCH=$(uname -m)
case $OS in Linux) OS="Linux";; Darwin) OS="Darwin";; esac
case $ARCH in x86_64|amd64) ARCH="x86_64";; arm64|aarch64) ARCH="arm64";; esac
curl -LO https://github.com/STRRL/shell-now/releases/latest/download/shell-now_${OS}_${ARCH}.tar.gz
tar -xzf shell-now_${OS}_${ARCH}.tar.gz
sudo install shell-now /usr/local/bin/shell-now && rm shell-now shell-now_${OS}_${ARCH}.tar.gz
```
## π Why?
Sometimes you just want toβ¦
- π§ Show a live bug in a terminal to a teammate
- π¨βπ« Give a quick Linux/DevOps lesson via browser
- π§ͺ Share a terminal-based demo of your CLI tool
- π Remotely connect to your own Pi/NAS with no public IP setup
ShellNow makes it dead-simple.
## β οΈ Warning
This tool exposes your local shell to the public internet.
- ALWAYS Use password protection
- Prefer read-only demos when possible
- Avoid running this on sensitive systems
## π Known Issues
- **Safari Compatibility**: The web terminal currently has compatibility issues with Safari browser. Use Chrome, Firefox, or Edge for the best experience.
## π Contributing
Pull requests, issues, and ideas are welcome!