instatunnel 1.1.4 → 1.1.6
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 +45 -19
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
# InstaTunnel
|
|
2
2
|
|
|
3
|
-
InstaTunnel
|
|
3
|
+
InstaTunnel is a secure localhost tunnel for developers who want a fast ngrok alternative.
|
|
4
|
+
|
|
5
|
+
It helps you expose local apps, APIs, webhook endpoints, and MCP services over HTTPS in seconds.
|
|
6
|
+
|
|
7
|
+
## Why developers choose InstaTunnel
|
|
8
|
+
|
|
9
|
+
- Fast setup: tunnel your local app with one command
|
|
10
|
+
- Custom subdomains: create memorable URLs on `instatunnel.my`
|
|
11
|
+
- Dashboard analytics: inspect traffic and usage
|
|
12
|
+
- Pro features: custom domains and MCP endpoint tunnels
|
|
13
|
+
- Built for daily dev workflows: demos, QA, webhooks, mobile testing
|
|
14
|
+
|
|
15
|
+
## InstaTunnel vs ngrok
|
|
16
|
+
|
|
17
|
+
If you are searching for:
|
|
18
|
+
- ngrok alternative
|
|
19
|
+
- localhost tunnel alternative
|
|
20
|
+
- free tunnel for webhook testing
|
|
21
|
+
- custom subdomain tunneling tool
|
|
22
|
+
|
|
23
|
+
InstaTunnel is designed for the same core use case with a simpler setup and strong defaults.
|
|
4
24
|
|
|
5
25
|
## Install
|
|
6
26
|
|
|
@@ -14,50 +34,56 @@ npm install -g instatunnel
|
|
|
14
34
|
# Auto-detect your local app
|
|
15
35
|
instatunnel
|
|
16
36
|
|
|
17
|
-
# Tunnel a specific port
|
|
37
|
+
# Tunnel a specific local port
|
|
18
38
|
instatunnel 3000
|
|
19
39
|
|
|
20
|
-
#
|
|
40
|
+
# Use a custom subdomain
|
|
21
41
|
instatunnel 3000 --subdomain myapp
|
|
22
42
|
```
|
|
23
43
|
|
|
24
|
-
## MCP
|
|
44
|
+
## MCP tunnel support (Pro and Business)
|
|
25
45
|
|
|
26
46
|
```bash
|
|
27
47
|
# Login once
|
|
28
48
|
instatunnel auth login
|
|
29
49
|
|
|
30
|
-
# MCP tunnel
|
|
50
|
+
# MCP tunnel (default transport v1)
|
|
31
51
|
instatunnel 8787 --mcp
|
|
32
52
|
|
|
33
|
-
# MCP tunnel with streaming transport
|
|
53
|
+
# MCP tunnel with streaming transport v2
|
|
34
54
|
instatunnel 8787 --mcp --transport v2
|
|
35
55
|
```
|
|
36
56
|
|
|
37
|
-
Optional staged MCP token header
|
|
57
|
+
Optional staged MCP token header:
|
|
38
58
|
|
|
39
59
|
```bash
|
|
40
60
|
export INSTATUNNEL_MCP_TOKEN="your-shared-secret"
|
|
41
61
|
instatunnel 8787 --mcp --transport v2
|
|
42
62
|
```
|
|
43
63
|
|
|
44
|
-
|
|
45
|
-
- v1 remains default for compatibility.
|
|
46
|
-
- v2 is recommended for long streaming MCP responses.
|
|
47
|
-
- MCP paths use stricter protection limits than regular tunnel traffic.
|
|
64
|
+
## Popular use cases
|
|
48
65
|
|
|
49
|
-
|
|
66
|
+
- Localhost API sharing for frontend-backend integration
|
|
67
|
+
- Webhook testing for Stripe, GitHub, Slack, and custom integrations
|
|
68
|
+
- QA and client demos from local machines
|
|
69
|
+
- Mobile device testing against local environments
|
|
70
|
+
- MCP endpoint exposure for remote AI tooling workflows
|
|
50
71
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
72
|
+
## Common search terms
|
|
73
|
+
|
|
74
|
+
People usually find InstaTunnel via terms like:
|
|
75
|
+
- ngrok alternative
|
|
76
|
+
- localhost tunnel
|
|
77
|
+
- expose localhost to internet
|
|
78
|
+
- webhook testing tool
|
|
79
|
+
- https tunnel for local development
|
|
80
|
+
- custom subdomain tunnel
|
|
81
|
+
- MCP tunnel
|
|
82
|
+
- tunnel for local API
|
|
57
83
|
|
|
58
84
|
## Links
|
|
59
85
|
|
|
60
86
|
- Website: https://instatunnel.my
|
|
61
|
-
- Dashboard: https://dashboard.instatunnel.my
|
|
62
87
|
- Docs: https://instatunnel.my/docs
|
|
63
88
|
- Pricing: https://instatunnel.my/pricing
|
|
89
|
+
- Dashboard: https://dashboard.instatunnel.my
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "instatunnel",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "Expose localhost instantly with custom domains, analytics, and MCP tunnel support",
|
|
5
5
|
"main": "install.js",
|
|
6
6
|
"bin": {
|
|
@@ -14,10 +14,14 @@
|
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"ngrok",
|
|
17
|
+
"ngrok-alternative",
|
|
17
18
|
"tunnel",
|
|
19
|
+
"localhost-tunnel",
|
|
18
20
|
"localhost",
|
|
21
|
+
"https-tunnel",
|
|
19
22
|
"development",
|
|
20
23
|
"webhook",
|
|
24
|
+
"webhook-testing",
|
|
21
25
|
"cli",
|
|
22
26
|
"instant",
|
|
23
27
|
"port-forwarding",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"nextjs",
|
|
28
32
|
"laravel",
|
|
29
33
|
"api",
|
|
34
|
+
"mcp",
|
|
35
|
+
"mcp-tunnel",
|
|
30
36
|
"free",
|
|
31
37
|
"anonymous",
|
|
32
38
|
"zero-config"
|
|
@@ -66,6 +72,9 @@
|
|
|
66
72
|
"ia32"
|
|
67
73
|
],
|
|
68
74
|
"preferGlobal": true,
|
|
75
|
+
"publishConfig": {
|
|
76
|
+
"access": "public"
|
|
77
|
+
},
|
|
69
78
|
"files": [
|
|
70
79
|
"install.js",
|
|
71
80
|
"instatunnel-wrapper.js",
|