{"id":27937309,"url":"https://github.com/strrl/shell-now","last_synced_at":"2026-04-24T16:03:46.035Z","repository":{"id":291706997,"uuid":"978474210","full_name":"STRRL/shell-now","owner":"STRRL","description":"Share your terminal in the browser in seconds. eg. Vibe Coding with Claude Code / Gemini CLI on your iPad!","archived":false,"fork":false,"pushed_at":"2025-06-27T23:23:04.000Z","size":42,"stargazers_count":48,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-14T09:57:01.678Z","etag":null,"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"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/STRRL.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-06T03:35:20.000Z","updated_at":"2026-03-05T15:48:15.000Z","dependencies_parsed_at":"2025-05-06T06:34:08.944Z","dependency_job_id":null,"html_url":"https://github.com/STRRL/shell-now","commit_stats":null,"previous_names":["strrl/shell-now"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/STRRL/shell-now","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/STRRL%2Fshell-now","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/STRRL%2Fshell-now/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/STRRL%2Fshell-now/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/STRRL%2Fshell-now/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/STRRL","download_url":"https://codeload.github.com/STRRL/shell-now/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/STRRL%2Fshell-now/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32230421,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["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"],"created_at":"2025-05-07T07:52:09.210Z","updated_at":"2026-04-24T16:03:46.019Z","avatar_url":"https://github.com/STRRL.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Shell Now 🐚⚡\n\n\u003e Instant Web Terminal via `ttyd` + `cloudflared` — A one-click webshell for developers, educators, and hackers.\n\nShellNow 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/).\n\nIdeal for quick debugging, remote terminal sharing, and Linux teaching demos.\n\n## 🎥 Demo\n\n[![Shell Now Demo](https://img.youtube.com/vi/fB19R72xKTE/0.jpg)](https://www.youtube.com/watch?v=fB19R72xKTE\u0026ab_channel=strrlthedev)\n\n*It's a 3 min video, and it will take you 1.5 min with 2x speed, or 1.8 seconds at 100x speed.*\n\n## ✨ Features\n\n- 🚀 One command to launch a public web shell\n- 🧩 Automatically downloads `ttyd` and `cloudflared` (cross-platform)\n- 🔐 Optional password authentication\n- 💻 Runs any shell or custom command (e.g. `htop`, `matrix`, `bash`)\n\n## 📦 Installation\n\n### Homebrew (macOS)\n\n```bash\n# Add this tap to your Homebrew\nbrew tap strrl/collective\n\n# Install shell-now\nbrew install shell-now\n\n# Start shell-now\nshell-now\n```\n\n### Docker\n\n```bash\ndocker run cr.strrl.dev/strrl/shell-now:latest\n```\n\n**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.\n\n### Native App Alternative\n\nAre you an Apple fanboy and prefer a native app? See: https://github.com/amantus-ai/vibetunnel\n\n### Quick Install\n\n```bash\n# Auto-detect OS and architecture\nOS=$(uname -s); ARCH=$(uname -m)\ncase $OS in Linux) OS=\"Linux\";; Darwin) OS=\"Darwin\";; esac\ncase $ARCH in x86_64|amd64) ARCH=\"x86_64\";; arm64|aarch64) ARCH=\"arm64\";; esac\ncurl -LO https://github.com/STRRL/shell-now/releases/latest/download/shell-now_${OS}_${ARCH}.tar.gz\ntar -xzf shell-now_${OS}_${ARCH}.tar.gz\nsudo install shell-now /usr/local/bin/shell-now \u0026\u0026 rm shell-now shell-now_${OS}_${ARCH}.tar.gz\n```\n\n## 📚 Why?\n\nSometimes you just want to…\n\n- 🔧 Show a live bug in a terminal to a teammate\n- 👨‍🏫 Give a quick Linux/DevOps lesson via browser\n- 🧪 Share a terminal-based demo of your CLI tool\n- 🏠 Remotely connect to your own Pi/NAS with no public IP setup\n\nShellNow makes it dead-simple.\n\n## ⚠️ Warning\n\nThis tool exposes your local shell to the public internet.\n\n- ALWAYS Use password protection\n- Prefer read-only demos when possible\n- Avoid running this on sensitive systems\n\n## 🐛 Known Issues\n\n- **Safari Compatibility**: The web terminal currently has compatibility issues with Safari browser. Use Chrome, Firefox, or Edge for the best experience.\n\n## 🙌 Contributing\n\nPull requests, issues, and ideas are welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrrl%2Fshell-now","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstrrl%2Fshell-now","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrrl%2Fshell-now/lists"}