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 🙏

© 2024 – Pkg Stats / Ryan Hefner

damproxy

v0.1.9

Published

A reverse proxy tool which can let WAN server's data flows to LAN server.

Downloads

19

Readme

可以将公网(WAN)主机流量转到内网(LAN)主机的反向代理工具库,实现了内网穿透。采用多链接+配对的方式实现,支持TCP、HTTP、SSH协议等。

A reverse proxy tool which can let WAN server's data flows to LAN server. support TCP, HTTP, SSH or others protocol based on TCP.

Getting started

Prepare a WAN server and a LAN server. Follow the steps on both of servers.

  1. Download and install Node.js(>=12.0.0).
  2. Install damproxy
$ npm i damproxy -g

WAN Server

Simple usage, forward data from port 80 and 443 to LAN server:

$ damproxy listen --forward-ports 80 443

Full options:

$ damproxy listen --host 0.0.0.0 --port 8991 --pwd mypassword --forward-ports 80@17080 443@17443

Options

--host

Host for LAN server connection, default 0.0.0.0.

--port

Port for LAN server connection, default 8991.

--pwd

Set the password to identify LAN server. Should less than 32 characters.

--forward-ports

Specify the port that will receive data from real client, then it will forward to the LAN server via the secondary port as outbound port. 80@17080 means receive data from 80 and forward to LAN server that output via 17080. Defaults the secondary port will automatically provided. May specify it in whitelist situation.

LAN Server

Simple usage, connect to WAN server

$ damproxy connect --host x.x.x.x --forward-ports 80

Full options:

$ damproxy connect --host x.x.x.x --port 8991 --pwd mypassword --forward-ports 80 443@20443 [email protected]:22

Options

--host

WAN server's host to connect.

--port

WAN server's port to connect, default 8991.

--pwd

Send the password to WAN server. Should less than 32 characters.

--forward-ports

Whitelist of forwarding port and specify a redirect address. It formed by A@B:C which means allowing data from WAN server's port A and send it to B:C. 80 equivalent to [email protected]:80 and 80:8080 equivalent to [email protected]:8080.