A tunnel tool to help you expose local web (HTTP/WebSocket) server behind a NAT or firewall to the internet. Inspired by Ngrok and node-http-proxy.
The tunnel is based on WebSocket. We have a WebSocket connection between the client and server to stream HTTP/WebSocket requests from public server to your local server.
Firstly please deploy this project to your own web host with public internet access. The project is just a Node.js web server based on Express.js. So just deploy as what you do for deploying Node.js web server.
In first deployment, you need to provide JWT_GENERATOR_USERNAME and JWT_GENERATOR_PASSWORD environment variables. We will use those values to auth and get JWT token at client side. After you get JWT Token, you can remove JWT_GENERATOR_USERNAME and JWT_GENERATOR_PASSWORD environment variables to keep safe.
Please install lite-http-tunnel client in your local computer where it can access your local HTTP server.
$ npm i -g lite-http-tunnel
$ lite-http-tunnel -h$ lite-http-tunnel config server https://your_web_host_domain$ lite-http-tunnel auth $JWT_GENERATOR_USERNAME $JWT_GENERATOR_PASSWORDReplace
$JWT_GENERATOR_USERNAMEand$JWT_GENERATOR_PASSWORDwith values that you provide at tunnel server
$ lite-http-tunnel config server https://your_web_host_domain -p profile1
$ lite-http-tunnel auth $JWT_GENERATOR_USERNAME $JWT_GENERATOR_PASSWORD -p profile1$ lite-http-tunnel start your_local_server_portPlease replace your_local_server_port with your local HTTP server port, eg: 8080.
After that you can access your local HTTP server by access your_public_server_domain.
$ lite-http-tunnel start your_local_server_port -p profile1$ lite-http-tunnel start your_local_server_port -o localhost:5000$ lite-http-tunnel start your_local_server_port -h localhost1The server steams web request to WebSocket connection which has same host value in request headers.
So if you have multiple domains for the proxy server, you can have multiple clients based on different domain.
For example, you have https://app1.test.com and https://app2.test.com for this proxy server.
In client 1:
$ lite-http-tunnel config server https://app1.test.com -p profile1
$ lite-http-tunnel start your_local_server_port -p profile1
In client 2:
$ lite-http-tunnel config server https://app2.test.com -p profile2
$ lite-http-tunnel start your_local_server_port -p profile2
From 0.2.0, it supports to have multiple clients with different path prefix.
In client 1:
$ lite-http-tunnel config path /api_v1
$ lite-http-tunnel start your_local_server_port
In client 2:
$ lite-http-tunnel config path /api_v2
$ lite-http-tunnel start your_local_server_port
With that, requests with path prefix /api_v1 will be streamed to client 1, requests with path prefix /api_v2 will be streamed to client 2
A introduce article: Building a HTTP Tunnel with WebSocket and Node.JS
- Add tests
