npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@leverageaiapps/gogogo-server

v1.0.5

Published

CLI tool to forward terminal sessions to your mobile device via Vortex WebSocket tunnel. Code anywhere from your pocket.

Readme

GoGoGo Server

npm version License: MIT

CLI tool to forward terminal sessions to your mobile device via Cloudflare Tunnel. Code anywhere from your pocket.

Features

  • 🚀 Instant Setup - One command to start forwarding your terminal
  • 📱 Mobile Access - Access your terminal from any device with a browser
  • 🎙️ Voice Input - Built-in voice recognition for hands-free coding
  • 🔒 Secure - PIN-protected sessions with automatic IP blocking
  • 🌐 No Port Forwarding - Uses Cloudflare Quick Tunnel (no account needed)
  • Real-time - WebSocket-based communication for instant feedback
  • 🎯 PTY Support - Full terminal emulation with node-pty

Prerequisites

Install cloudflared

GoGoGo requires cloudflared to create secure tunnels:

macOS:

brew install cloudflared

Ubuntu/Debian:

sudo mkdir -p --mode=0755 /usr/share/keyrings
curl -fsSL https://pkg.cloudflare.com/cloudflare-main.gpg | sudo tee /usr/share/keyrings/cloudflare-main.gpg >/dev/null
echo 'deb [signed-by=/usr/share/keyrings/cloudflare-main.gpg] https://pkg.cloudflare.com/cloudflared any main' | sudo tee /etc/apt/sources.list.d/cloudflared.list
sudo apt-get update && sudo apt-get install cloudflared

Arch Linux:

sudo pacman -S cloudflared

For other systems, see the official installation guide.

Installation

npm install -g @leverageaiapps/gogogo-server

Verify Installation:

gogogo --version

Quick Start

# Start a terminal session
gogogo start

# Start with a specific command
gogogo start claude
gogogo start python
gogogo start vim

A QR code will appear - scan it with your phone and enter the 6-digit PIN to access your terminal!

Usage

Basic Commands

# Start a terminal session
gogogo start

# Start with a custom PIN
gogogo start --pin 123456

# Start with a machine name
gogogo start --name "My Laptop"

# Start a specific command
gogogo start claude --pin 123456

Options

| Option | Short | Description | |--------|-------|-------------| | --name <name> | -n | Set a custom machine name | | --pin <pin> | -p | Set a custom 6-digit PIN | | --debug-asr | | Enable verbose ASR logging |

Configuration

# Show current configuration
gogogo config --show

How It Works

  1. Run gogogo start [command] in your terminal
  2. GoGoGo starts a local web server and creates a Cloudflare tunnel
  3. A QR code appears with your unique URL
  4. Scan the QR code with your phone
  5. Enter the 6-digit PIN to access your terminal
  6. Your terminal is now accessible from your mobile device!

Exiting

To exit GoGoGo, you can:

  • Type exit in the terminal (or the command to exit your current program)
  • Press Ctrl+C in the terminal where you ran gogogo start
  • Close the terminal window

When you see "Terminal session ended.", the session has been successfully closed.

Security

  • PIN Protection: Each session requires a 6-digit PIN
  • Rate Limiting: Max 10 failed login attempts per IP
  • Auto-blocking: IPs are temporarily blocked after too many failures
  • Session Cookies: Authentication persists for 24 hours

Troubleshooting

Error: posix_spawnp failed

Fix permissions on the node-pty spawn-helper:

# macOS ARM (M1/M2/M3)
chmod +x node_modules/node-pty/prebuilds/darwin-arm64/spawn-helper

# macOS Intel
chmod +x node_modules/node-pty/prebuilds/darwin-x64/spawn-helper

# Linux x64
chmod +x node_modules/node-pty/prebuilds/linux-x64/spawn-helper

cloudflared not found

Install cloudflared following the Prerequisites section, then verify:

cloudflared --version

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments