instatunnel 1.1.7 → 1.1.9

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 CHANGED
@@ -41,13 +41,31 @@ instatunnel 3000
41
41
 
42
42
  # Use a custom subdomain
43
43
  instatunnel 3000 --subdomain myapp
44
+
45
+ # Region flag (single-region deployment currently supports only us)
46
+ instatunnel 3000 --region us
44
47
  ```
45
48
 
46
49
  ## MCP tunnel support (Pro and Business)
47
50
 
48
51
  ```bash
49
- # Login once
50
- instatunnel auth login
52
+ # New users: start auth flow (verification email)
53
+ instatunnel auth login -e you@example.com
54
+
55
+ # Existing users: save API key locally
56
+ instatunnel auth set-key "it_your_api_key"
57
+
58
+ # PowerShell copy helper (Windows)
59
+ Set-Clipboard "it_your_api_key"
60
+
61
+ # Save directly from clipboard (Windows PowerShell)
62
+ instatunnel auth set-key "$(Get-Clipboard)"
63
+
64
+ # macOS copy helper
65
+ pbpaste | xargs -I {} instatunnel auth set-key "{}"
66
+
67
+ # Linux copy helper (xclip)
68
+ xclip -o -selection clipboard | xargs -I {} instatunnel auth set-key "{}"
51
69
 
52
70
  # MCP tunnel (default transport v1)
53
71
  instatunnel 8787 --mcp
@@ -68,6 +86,16 @@ MCP notes:
68
86
  - v2 is recommended for streaming MCP responses.
69
87
  - MCP traffic has dedicated protective limits.
70
88
 
89
+ ## CLI analytics and logs
90
+
91
+ ```bash
92
+ # Usage stats (last 30 days, requires API key)
93
+ instatunnel --stats
94
+
95
+ # Live request-log polling (requires Pro/Business for request logs)
96
+ instatunnel --logs
97
+ ```
98
+
71
99
  ## Popular use cases
72
100
 
73
101
  - Localhost API sharing for frontend-backend integration
package/bin/instatunnel CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instatunnel",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "Expose localhost instantly with custom domains, analytics, and MCP tunnel support",
5
5
  "main": "install.js",
6
6
  "bin": {