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

ghostgate

v1.3.0

Published

Secure HTTPS tunneling via TunnelMole

Readme

Secure Exchange Tunnel 🔐🌍

A lightweight Node.js utility that securely proxies local or internal HTTPS services and exposes them to the internet using TunnelMole.
Perfect for *testing webhooks, **sharing internal dashboards, or *exposing services behind firewalls without complex configuration.

This project provides two ways to run the tunnel:

  • A simple fixed configuration (tunnel.js)
  • A flexible CLI-based tool (secure-exchange.js)

✨ Features

  • 🔁 Reverse proxy using http-proxy
  • 🔐 Works with self-signed HTTPS certificates
  • 🌍 Public exposure via TunnelMole
  • 🧰 CLI support for dynamic configuration
  • ⚡ Minimal setup, fast to use

📦 Requirements

  • Node.js v24.12.0+
  • TunnelMole CLI installed globally
    npm install -g tunnelmole
    

📁 Project Structure

.
├── tunnel.js
├── secure-exchange.js
├── package.json
└── README.md

🔧 Installation

  • git clone https://github.com/RaoulBock/GhostGate.git
  • cd secure-exchange-tunnel
  • npm install

🚀 Usage

Option 1: tunnel.js (Simple & Fixed Configuration)

Use this option when you have one known internal service and want minimal setup.

1. Configure

Edit tunnel.js and update the values below:

const PORT = 1234;

target: https://example.domain.local:1234
host: example.domain.local

2. Run


node tunne.js

2. Output Example

🔁 Proxy running on http://localhost:1234 -> https://example.domain.local:1234
https://random-name.tunnelmole.net

You can now access your internal service using the generated TunnelMole URL

Option 2: secure-exchange.js (CLI-Based – Recommended)

This option is more flexible and ideal for scripts, automation, or multiple environments.

1. (Optional) Make Executable

chmod +x secure-exchange.js

2. Run with Arguments

node secure-exchange.js \
  --target https://internal.service.local:8443 \
  --host internal.service.local \
  --port 3000
  • --target HTTPS service you want to expose
  • --host Host header (domain only, no port)
  • --port Local port the proxy listens on

3. Output Example

🚀 Proxy running on http://localhost:3000 -> https://internal.service.local:8443
https://secure-link.tunnelmole.net

Example use Cases

  • ✔ Test Stripe / PayPal webhooks locally
  • ✔ Share internal admin dashboards
  • ✔ Expose services behind NAT or firewalls
  • ✔ Demo local projects publicly

🔒 Security Notes

    • SSL verification is disabled to support self-signed certificates
    • TunnelMole URLs are public and temporary
    • Not recommended for production use without additional security

🛠️ Built With

    • Node.js
    • http-proxy
    • TunnelMole

📄 License

MIT License

⭐️ Support

If you find this project useful, give it a ⭐ on GitHub and share it with others.