tailscale-proxy 1.5.0 → 1.5.1
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.
- package/README.md +27 -19
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -5,20 +5,31 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/tailscale-proxy)
|
|
6
6
|
[](https://tailscaleproxy.vercel.app)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Self-hosted **[ngrok](https://ngrok.com) alternative** on [Tailscale](https://tailscale.com) —
|
|
9
|
+
share all your local dev servers through one stable `*.ts.net` URL, routed by project name.
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
npx tailscale-proxy
|
|
12
|
-
```
|
|
11
|
+
## ⬇️ Download the desktop app
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
them
|
|
16
|
-
|
|
13
|
+
A native **menu-bar app** — start/stop the proxy, watch your dev servers, and share
|
|
14
|
+
them, no terminal needed. <a href="https://tailscaleproxy.vercel.app/desktop"><img src="website/public/app-icon.svg" align="right" width="84" alt="app icon" /></a>
|
|
15
|
+
|
|
16
|
+
| Platform | Direct download |
|
|
17
|
+
| --- | --- |
|
|
18
|
+
| 🍎 **macOS** · Apple Silicon & Intel | **[Tailscale-Proxy-macOS.dmg](https://github.com/meabed/tailscale-proxy/releases/download/desktop-latest/Tailscale-Proxy-macOS.dmg)** |
|
|
19
|
+
| 🪟 **Windows** · 64-bit | **[Tailscale-Proxy-Windows.zip](https://github.com/meabed/tailscale-proxy/releases/download/desktop-latest/Tailscale-Proxy-Windows.zip)** |
|
|
20
|
+
| 🐧 **Linux** · 64-bit | **[Tailscale-Proxy-Linux.tar.gz](https://github.com/meabed/tailscale-proxy/releases/download/desktop-latest/Tailscale-Proxy-Linux.tar.gz)** |
|
|
21
|
+
|
|
22
|
+
→ [All releases](https://github.com/meabed/tailscale-proxy/releases) · [setup, screenshots & docs](https://tailscaleproxy.vercel.app/desktop)
|
|
23
|
+
|
|
24
|
+
## ⚡ Or one command in the terminal
|
|
17
25
|
|
|
18
26
|
```bash
|
|
19
|
-
|
|
27
|
+
npx tailscale-proxy # discovers your dev servers + shares them via Tailscale
|
|
28
|
+
brew install meabed/tap/tsp && tsp # or install the binary
|
|
20
29
|
```
|
|
21
30
|
|
|
31
|
+
First time? `npx tailscale-proxy doctor` checks your setup — see [Requirements](#requirements).
|
|
32
|
+
|
|
22
33
|
---
|
|
23
34
|
|
|
24
35
|
An open-source, **self-hosted [ngrok](https://ngrok.com) alternative** built on
|
|
@@ -104,20 +115,17 @@ Update later with **`tsp update`** — it self-updates a standalone binary, or p
|
|
|
104
115
|
|
|
105
116
|
## Desktop app
|
|
106
117
|
|
|
107
|
-
<img src="website/public/
|
|
108
|
-
|
|
109
|
-
Prefer clicking to typing? There's a native **menu-bar app** for **macOS, Windows,
|
|
110
|
-
and Linux** — start/stop the proxy, watch each dev server (cpu · memory · uptime),
|
|
111
|
-
switch Funnel/Serve, and open/copy/kill services, all without a terminal. It runs
|
|
112
|
-
the same engine as the CLI and shares the same `~/.tailscale-proxy/config.json`.
|
|
118
|
+
<img src="website/public/desktop-panel.png" align="right" width="300" alt="Tailscale Proxy menu-bar panel" />
|
|
113
119
|
|
|
114
|
-
|
|
115
|
-
|
|
120
|
+
The [menu-bar app](#️-download-the-desktop-app) (download links above) runs the same
|
|
121
|
+
engine as the CLI and shares the same `~/.tailscale-proxy/config.json`. Each service
|
|
122
|
+
shows its runtime, port, **cpu · memory · uptime**, and a `⋯` menu (open local/proxy
|
|
123
|
+
URL, open folder, copy info, kill). Settings window for the full config + start-at-login.
|
|
116
124
|
|
|
117
|
-
|
|
125
|
+
**[Docs, screenshots & install steps →](https://tailscaleproxy.vercel.app/desktop)**
|
|
118
126
|
|
|
119
|
-
Build from source: `cd desktop && go build -o tsp-app . && ./tsp-app`
|
|
120
|
-
[`desktop/README.md`](desktop/README.md)).
|
|
127
|
+
Build from source: `cd desktop && go build -o tsp-app . && ./tsp-app`
|
|
128
|
+
(see [`desktop/README.md`](desktop/README.md)).
|
|
121
129
|
|
|
122
130
|
---
|
|
123
131
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailscale-proxy",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
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",
|
|
@@ -74,12 +74,12 @@
|
|
|
74
74
|
"semantic-release": "^25.0.3"
|
|
75
75
|
},
|
|
76
76
|
"optionalDependencies": {
|
|
77
|
-
"tailscale-proxy-darwin-arm64": "1.5.
|
|
78
|
-
"tailscale-proxy-darwin-x64": "1.5.
|
|
79
|
-
"tailscale-proxy-linux-x64": "1.5.
|
|
80
|
-
"tailscale-proxy-linux-arm64": "1.5.
|
|
81
|
-
"tailscale-proxy-win32-x64": "1.5.
|
|
82
|
-
"tailscale-proxy-win32-arm64": "1.5.
|
|
77
|
+
"tailscale-proxy-darwin-arm64": "1.5.1",
|
|
78
|
+
"tailscale-proxy-darwin-x64": "1.5.1",
|
|
79
|
+
"tailscale-proxy-linux-x64": "1.5.1",
|
|
80
|
+
"tailscale-proxy-linux-arm64": "1.5.1",
|
|
81
|
+
"tailscale-proxy-win32-x64": "1.5.1",
|
|
82
|
+
"tailscale-proxy-win32-arm64": "1.5.1"
|
|
83
83
|
},
|
|
84
84
|
"packageManager": "bun@1.3.14",
|
|
85
85
|
"engines": {
|