tailscale-proxy 1.0.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -4
  2. package/package.json +11 -8
package/README.md CHANGED
@@ -2,10 +2,19 @@
2
2
 
3
3
  [![ci](https://github.com/meabed/tailscale-proxy/actions/workflows/ci.yml/badge.svg)](https://github.com/meabed/tailscale-proxy/actions/workflows/ci.yml)
4
4
  [![release](https://github.com/meabed/tailscale-proxy/actions/workflows/release.yml/badge.svg)](https://github.com/meabed/tailscale-proxy/actions/workflows/release.yml)
5
+ [![npm](https://img.shields.io/npm/v/tailscale-proxy)](https://www.npmjs.com/package/tailscale-proxy)
5
6
 
6
- Discover your local dev servers by **port**, and expose them through a **single
7
- Tailscale entry** — privately (Serve, tailnet-only) or publicly (Funnel) — routed
8
- by **project name**.
7
+ 📖 **Docs:** https://tailscaleproxy.vercel.app · sources in [`website/`](website)
8
+
9
+ An open-source, **self-hosted [ngrok](https://ngrok.com) alternative** built on
10
+ [Tailscale](https://tailscale.com). Discover your local dev servers by **port**,
11
+ and expose them through a **single Tailscale entry** — privately (Serve,
12
+ tailnet-only) or publicly (Funnel) — routed by **project name**.
13
+
14
+ > **vs. ngrok:** your own stable `*.ts.net` URL over your Tailscale tunnel — no
15
+ > third-party relay, no random per-session URLs, no rate limits/paywalls. One
16
+ > hostname for **many** dev servers, discovered automatically (no `ngrok http 3000`
17
+ > per port).
9
18
 
10
19
  No per-app wiring: just run your servers (`node`, `bun`, `deno`, `python`, `php`, `ruby`, `go`, `java`, …) and `tsp` finds the ones listening in a port range, derives a path slug
11
20
  from each project's folder, and routes to them under one hostname:
@@ -101,6 +110,7 @@ Run `tsp start --help` for all flags. Global: `-h/--help`, `-v/--version`.
101
110
  | `--all` | off | Include all listeners, not just web runtimes |
102
111
  | `--runtimes <list>` | all known | Restrict to specific runtimes, e.g. `node,bun,python` |
103
112
  | `--private` | off | Expose privately via Tailscale **Serve** (default: **Funnel**) |
113
+ | `--bind <addr>` | `127.0.0.1` | Proxy listen address. Use `0.0.0.0` to reach the proxy from **Docker containers / the LAN** without MagicDNS |
104
114
  | `--port <n>` | `8443` | Local proxy HTTP port |
105
115
  | `--interval <sec>` | `20` | Re-scan period |
106
116
  | `--https-port <n>` | `443` | Public/tailnet HTTPS port (Funnel: `443`/`8443`/`10000`) |
@@ -135,7 +145,7 @@ use). Flags override config at runtime; the file is the source of defaults.
135
145
  ```json
136
146
  {
137
147
  "ports": "3000-5000", "all": false, "runtimes": "", "private": false,
138
- "port": 8443, "interval": 20, "httpsPort": 443,
148
+ "bind": "127.0.0.1", "port": 8443, "interval": 20, "httpsPort": 443,
139
149
  "logRequests": true, "deregisterCycles": 5, "forwardHost": false
140
150
  }
141
151
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailscale-proxy",
3
- "version": "1.0.1",
3
+ "version": "1.2.0",
4
4
  "description": "Discover local dev servers by port and expose them through one Tailscale Serve/Funnel entry, routed by project name.",
5
5
  "keywords": [
6
6
  "tailscale",
@@ -13,7 +13,10 @@
13
13
  "dev",
14
14
  "discovery",
15
15
  "localhost",
16
- "tunnel"
16
+ "tunnel",
17
+ "ngrok",
18
+ "ngrok-alternative",
19
+ "localtunnel"
17
20
  ],
18
21
  "homepage": "https://github.com/meabed/tailscale-proxy#readme",
19
22
  "bugs": {
@@ -71,12 +74,12 @@
71
74
  "semantic-release": "^25.0.3"
72
75
  },
73
76
  "optionalDependencies": {
74
- "tailscale-proxy-darwin-arm64": "1.0.1",
75
- "tailscale-proxy-darwin-x64": "1.0.1",
76
- "tailscale-proxy-linux-x64": "1.0.1",
77
- "tailscale-proxy-linux-arm64": "1.0.1",
78
- "tailscale-proxy-win32-x64": "1.0.1",
79
- "tailscale-proxy-win32-arm64": "1.0.1"
77
+ "tailscale-proxy-darwin-arm64": "1.2.0",
78
+ "tailscale-proxy-darwin-x64": "1.2.0",
79
+ "tailscale-proxy-linux-x64": "1.2.0",
80
+ "tailscale-proxy-linux-arm64": "1.2.0",
81
+ "tailscale-proxy-win32-x64": "1.2.0",
82
+ "tailscale-proxy-win32-arm64": "1.2.0"
80
83
  },
81
84
  "packageManager": "bun@1.3.14",
82
85
  "engines": {