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

fix-cursor-tunnel

v0.2.0

Published

Fix Cursor tunnel issues via a simple CLI.

Readme

fix-cursor-tunnel

A minimal Node.js CLI to fix Cursor tunnel issues.

Usage

  • Run directly via npx (recommended):
npx fix-cursor-tunnel
  • Install globally and run:
npm i -g fix-cursor-tunnel
fix-cursor-tunnel
  • Options:
-h, --help                 Show help
-v, --version              Show version
--dry-run                  Show what would happen without making changes
-b, --bin-dir <path>       Override Cursor bin directory
--src <path>               Explicit source file to rename (cursor-tunnel)
--dest <path>              Explicit destination path/name (code-tunnel)

Arguments

  • --dry-run
    • Prints the resolved paths and intended action without modifying files.
  • -b, --bin-dir
    • Directory that contains cursor-tunnel / code-tunnel.
    • Alternative: set environment variable CURSOR_BIN_DIR.
  • --src, --dest
    • Provide fully-qualified paths to override detection entirely.
    • When both are provided, they take precedence over --bin-dir.

Cross-platform defaults

If --src/--dest and --bin-dir/CURSOR_BIN_DIR are not provided, the CLI tries OS-specific defaults:

  • macOS: /Applications/Cursor.app/Contents/Resources/app/bin
  • Windows:
    • Per-user: %LocalAppData%\Programs\Cursor\resources\app\bin
    • Fallback: C:\\Program Files\\Cursor\\resources\\app\\bin
  • Linux: /opt/Cursor/resources/app/bin

If your installation lives elsewhere, pass --bin-dir or set CURSOR_BIN_DIR.

Examples

  • macOS

    • Dry run:
      node bin/cli.js --dry-run
    • Apply (may require sudo due to /Applications):
      sudo node bin/cli.js
  • Windows (PowerShell)

    • Dry run using default detection:
      node bin/cli.js --dry-run
    • Apply (run from elevated/Administrator shell if under Program Files):
      node bin/cli.js
    • Target a specific install:
      node bin/cli.js --bin-dir "$env:LocalAppData\Programs\Cursor\resources\app\bin"
  • Linux

    • Dry run:
      node bin/cli.js --dry-run
    • Apply (use sudo if needed):
      sudo node bin/cli.js
    • Specify a custom path:
      node bin/cli.js --bin-dir /opt/Cursor/resources/app/bin

Verify

  • macOS/Linux:
    ls -l <bin-dir>/{cursor-tunnel,code-tunnel}
  • Windows (PowerShell):
    dir "<bin-dir>\cursor-tunnel"
    dir "<bin-dir>\code-tunnel"

Revert

If needed, you can revert manually:

  • macOS/Linux:
    mv <bin-dir>/code-tunnel <bin-dir>/cursor-tunnel
  • Windows (PowerShell):
    ren "<bin-dir>\code-tunnel" "cursor-tunnel"

Development

  • Node.js >= 18 is required.
  • Entrypoint: bin/cli.js (bin mapping in package.json).
  • Implementation: src/index.js.

Local testing

# Make the CLI executable
chmod +x bin/cli.js

# Run locally
node bin/cli.js --help

Publishing

  1. Update the version in package.json.
  2. Ensure you are logged in to npm: npm login.
  3. Publish: npm publish.

Once published, users can run:

npx fix-cursor-tunnel

License

MIT