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

@wix/connect-dev

v0.2.0

Published

CLI tool for SSH connections to Wix dev machines

Readme

@wix/connect-dev

CLI tool for establishing SSH connections to Wix dev machines through Cloudflare Tunnels.

Installation

npx @wix/connect-dev

Commands

login

Authenticate with Wix using device code flow.

npx @wix/connect-dev login

Opens a browser for authentication and stores tokens locally.

whoami

Display the currently authenticated user.

npx @wix/connect-dev whoami

vscode <siteId> <projectId>

Connect to a dev machine and open in VS Code.

npx @wix/connect-dev vscode 9d9cbace-c65e-4428-8e85-d1b8a9af1193 a1b2c3d4-e5f6-7890-abcd-ef1234567890

cursor <siteId> <projectId>

Connect to a dev machine and open in Cursor.

npx @wix/connect-dev cursor <siteId> <projectId>

ssh <siteId> <projectId>

Connect to a dev machine via SSH.

npx @wix/connect-dev ssh <siteId> <projectId>

Connection Flow

  1. Authenticate - Verify stored tokens or prompt for login
  2. Ensure tunnel client - Check/install cloudflared binary
  3. Generate SSH keys - Create Ed25519 key pair per project
  4. Start remote tunnel - Call Wix API to establish Cloudflare tunnel
  5. Configure SSH - Setup local SSH config with ProxyCommand
  6. Launch client - Open VS Code, Cursor, or SSH session

Error Output

On failure, the CLI displays:

  • Step that failed
  • Error cause/message
  • HTTP status code (if applicable)
  • Request ID for support
✖ Unable to start tunnel on remote dev machine
✖ Cause: listSandboxes failed: Not Found
✖ Status: 404
✖ Request ID: abc123-def456

Configuration

Tokens are stored in ~/.wix/auth/account.json.

SSH configs are stored in ~/.ssh/wix-connect-dev.d/.

Development

yarn build        # Build the package
yarn test         # Run tests
yarn lint         # Run ESLint
yarn typecheck    # Type check
yarn format       # Format with Prettier

Requirements

  • Node.js 18+
  • VS Code or Cursor (for IDE commands)
  • SSH client