shellshare
v3.5.1
Published
Live terminal broadcasting - share your terminal via a web link
Downloads
1,190
Maintainers
Readme
shellshare
Live terminal broadcasting. Share your terminal session via a web link with a single command.
npx shellshareThis prints a link like https://shellshare.net/r/EPbZJ7VZNakS9vwUlS. Everything you type is broadcast live to anyone watching that page, read-only, until you exit the shell (Ctrl+D).
Or install it globally:
npm install -g shellshare
shellshareScripting & AI agents
Add --json for a machine-readable contract: the first line on stdout is
{"event":"sharing", ..., "url":"https://shellshare.net/r/..."} (parse url
and share it), and a final {"event":"end","exit_code":N} is printed when the
broadcast finishes. Errors go to stderr as ERROR: ... with a non-zero exit.
# Share a single command live; exits with the command's exit code
npx -y shellshare exec --json -- npm test
# Stream a log or any pipe (reads stdin until EOF)
tail -f build.log | npx -y shellshare --stdin --jsonFull agent-facing docs: AGENTS.md · shellshare.net/llms.txt
About this package
This package is a thin launcher around the prebuilt shellshare binary for your platform (Linux x64, macOS x64/arm64, Windows x64), fetched automatically through npm's optionalDependencies — no postinstall scripts.
Docs, FAQ and other install methods: shellshare.net · Source: github.com/vitorbaptista/shellshare
