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

haxorport

v1.3.2

Published

Tunneling tool for exposing local services

Downloads

5

Readme

🚀 Haxorport - Tunneling Tool

Haxorport is a tunneling tool that allows you to expose local services to the internet through TCP and HTTP tunnels quickly and easily.

✨ Features

  • TCP Tunneling: Easily expose local TCP ports to the internet
  • HTTP Tunneling: Expose local web servers with custom subdomains
  • Token Authentication: Security with token-based authentication
  • Interactive Mode: Intuitive command-line interface
  • Global Installation: Run from anywhere with the haxorport command
  • Enhanced Authentication: Immediate API validation with loading animation
  • Better User Experience: Colorful output with emojis and improved formatting
  • Interactive Prompts: Always returns to prompt after commands
  • Account Info: Shows subscription details on startup and after login

📦 Installation

Installation from NPM (Recommended)

# Global installation
npm install -g haxorport

Installation from Source

# Clone repository
git clone https://gitlab.com/alwanandri2712/haxor-client.git
cd haxor-client

# Install dependencies and install globally
npm install
npm install -g .

🔧 Usage

Authentication

Before using Haxorport, you need to authenticate with a token:

haxorport add-authtoken <your-token>

Running the Application

# Run in interactive mode
haxorport

Available Commands

In interactive mode, you can use the following commands:

| Command | Description | |----------|------------| | tcp <port> [host] [subdomain] | Create a TCP tunnel | | http <port> [host] [subdomain] | Create an HTTP tunnel | | list | Display all active tunnels | | remove <id> | Remove a specific tunnel | | help | Display help message | | exit | Exit the program |

Usage Examples

# Create a TCP tunnel for SSH (port 22)
tcp 22
# Output: ✓ Forwarding: tcp://tcp.haxorport.online:12345 -> localhost:22

# Create an HTTP tunnel for a web server with a custom subdomain
http 3000 localhost myapp
# Output: ✓ Forwarding: https://myapp.haxorport.online → localhost:3000

⚙️ Configuration

Configuration is stored in platform-specific directories:

  • Windows: %APPDATA%\haxorport
  • macOS: ~/Library/Application Support/haxorport
  • Linux/Unix: ~/.config/haxorport

💻 Development

Project Structure

haxorport/
├── client.js           # Application entry point
├── config.js           # Application configuration
├── auth/               # Authentication module
│   └── index.js        # Authentication functions
├── tunnels/            # Tunneling module
│   ├── index.js        # Tunnel implementation
│   └── direct.js       # Direct connections
├── services/           # API services
│   └── api.js          # Backend communication
└── cli/                # Command-line interface
    └── index.js        # CLI implementation

Server Configuration

  • WebSocket server: ws://tcp.haxorport.online:9000
  • API server: http://haxorport.test
  • API endpoint: /AuthToken/validate

Tunneling Protocol

The tunneling protocol uses WebSocket with the following message types:

  • tunnel-request: Request to create a tunnel
  • tunnel-success: Confirmation that the tunnel was created successfully
  • tunnel-error: Notification of a tunnel error

📝 Version Notes

v1.0.0

  • Initial implementation with TCP and HTTP tunnel support
  • Token authentication
  • Interactive mode with CLI
  • Global installation with the haxorport command
  • Enhanced banner display
  • More informative tunnel message format

v1.0.5

  • Added loading animation during authentication
  • Improved success messages with colors and emojis
  • Show account info immediately after login
  • Always return to interactive prompt after commands
  • Disabled debug API messages for cleaner output

📄 License

ISC


Made with ❤️ by the Michu Team