instatunnel 1.1.1 → 1.1.3
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 +130 -47
- package/bin/instatunnel +0 -0
- package/bin/instatunnel-linux +0 -0
- package/bin/instatunnel-linux-arm64 +0 -0
- package/bin/instatunnel-macos +0 -0
- package/bin/instatunnel-macos-arm64 +0 -0
- package/bin/instatunnel-windows.exe +0 -0
- package/bin/instatunnel.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,77 +1,160 @@
|
|
|
1
1
|
# InstaTunnel
|
|
2
2
|
|
|
3
|
-
InstaTunnel is a fast, reliable, and developer-friendly tunneling service that makes your localhost accessible from anywhere on the internet. Built as
|
|
3
|
+
InstaTunnel is a fast, reliable, and developer-friendly tunneling service that makes your localhost accessible from anywhere on the internet. Built as the **professional ngrok alternative** that's **40% cheaper** with a more generous free tier.
|
|
4
4
|
|
|
5
|
-
## Features
|
|
5
|
+
## 🚀 Features
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
7
|
+
- **🎯 Zero Configuration**: Just run `instatunnel` or `it` - auto-detects your running app
|
|
8
|
+
- **⚡ Lightning Fast**: Tunnel setup in under 2 seconds
|
|
9
|
+
- **🔗 Custom Subdomains**: Get memorable URLs like `myapp.instatunnel.my` (free!)
|
|
10
|
+
- **🔄 Multiple Tunnels**: Run 3 simultaneous tunnels on free tier
|
|
11
|
+
- **📊 Built-in Analytics**: Real-time request tracking and visitor stats
|
|
12
|
+
- **⏰ Extended Sessions**: 24+ hour sessions (vs 2 hours on ngrok free)
|
|
13
|
+
- **🔒 Security Features**: Password protection, basic auth, HTTPS by default
|
|
14
|
+
- **📱 Mobile Testing**: Built-in QR code generation
|
|
15
|
+
- **🏢 Custom Domains**: Use your own domain (Pro tier)
|
|
16
|
+
- **👥 Team Features**: Share tunnels with your team
|
|
14
17
|
|
|
15
|
-
## Quick Start
|
|
18
|
+
## ⚡ Quick Start
|
|
16
19
|
|
|
17
20
|
### Install CLI
|
|
18
21
|
```bash
|
|
19
|
-
#
|
|
20
|
-
|
|
22
|
+
# Install globally via NPM (recommended)
|
|
23
|
+
npm install -g instatunnel
|
|
21
24
|
|
|
22
|
-
#
|
|
23
|
-
|
|
25
|
+
# Verify installation
|
|
26
|
+
instatunnel --version
|
|
24
27
|
```
|
|
25
28
|
|
|
26
|
-
### Start Tunneling
|
|
29
|
+
### Start Tunneling (Zero Config!)
|
|
27
30
|
```bash
|
|
28
|
-
#
|
|
31
|
+
# Auto-detect and expose your app instantly (easiest!)
|
|
32
|
+
instatunnel
|
|
33
|
+
# 🔍 Auto-detected service on port 3000
|
|
34
|
+
# ✅ Tunnel created: https://abc123.instatunnel.my
|
|
35
|
+
|
|
36
|
+
# Ultra-short alias (even faster)
|
|
37
|
+
it
|
|
38
|
+
# 🔍 Auto-detected service on port 3000
|
|
39
|
+
# ✅ Tunnel created: https://def456.instatunnel.my
|
|
40
|
+
|
|
41
|
+
# Specify port manually if needed
|
|
29
42
|
instatunnel 3000
|
|
30
43
|
|
|
31
|
-
# Use custom subdomain
|
|
44
|
+
# Use custom subdomain (free tier!)
|
|
32
45
|
instatunnel 3000 --subdomain myapp
|
|
46
|
+
# ✅ Tunnel created: https://myapp.instatunnel.my
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Advanced Features
|
|
50
|
+
```bash
|
|
51
|
+
# Password protect your tunnel
|
|
52
|
+
instatunnel 3000 --password secret123
|
|
53
|
+
|
|
54
|
+
# Generate QR code for mobile testing
|
|
55
|
+
instatunnel 3000 --qr
|
|
33
56
|
|
|
34
|
-
# Multiple tunnels
|
|
35
|
-
instatunnel 3000 &
|
|
36
|
-
instatunnel
|
|
57
|
+
# Multiple tunnels simultaneously
|
|
58
|
+
instatunnel 3000 --subdomain frontend &
|
|
59
|
+
instatunnel 8000 --subdomain api &
|
|
60
|
+
|
|
61
|
+
# Framework-specific shortcuts
|
|
62
|
+
instatunnel --react # Auto-detects React dev server
|
|
63
|
+
instatunnel --next # Auto-detects Next.js
|
|
64
|
+
instatunnel --laravel # Auto-detects Laravel
|
|
37
65
|
```
|
|
38
66
|
|
|
39
|
-
##
|
|
67
|
+
## 📋 Common Usage Patterns
|
|
40
68
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
|
|
46
|
-
|
|
69
|
+
```bash
|
|
70
|
+
# Frontend Development
|
|
71
|
+
instatunnel --react # Auto-detect React (port 3000)
|
|
72
|
+
instatunnel --next # Auto-detect Next.js (port 3000)
|
|
73
|
+
instatunnel 5173 # Vite dev server
|
|
74
|
+
|
|
75
|
+
# API Development
|
|
76
|
+
instatunnel --laravel # Auto-detect Laravel (port 8000)
|
|
77
|
+
instatunnel 8000 # Express/Node.js API
|
|
78
|
+
instatunnel 4000 # Custom API port
|
|
79
|
+
|
|
80
|
+
# Full-Stack Development
|
|
81
|
+
instatunnel 3000 -s frontend
|
|
82
|
+
instatunnel 8000 -s api
|
|
83
|
+
instatunnel 5432 -s database
|
|
84
|
+
|
|
85
|
+
# Quick Sharing & Mobile Testing
|
|
86
|
+
it # Auto-detect and share instantly
|
|
87
|
+
instatunnel --qr # Auto-detect with QR code for mobile
|
|
88
|
+
instatunnel -s demo # Auto-detect with memorable name
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## 🛠 Management Commands
|
|
47
92
|
|
|
48
|
-
### Local Setup
|
|
49
93
|
```bash
|
|
50
|
-
#
|
|
51
|
-
|
|
52
|
-
|
|
94
|
+
# List active tunnels
|
|
95
|
+
instatunnel --list
|
|
96
|
+
|
|
97
|
+
# Stop specific tunnel
|
|
98
|
+
instatunnel --kill myapp
|
|
53
99
|
|
|
54
|
-
#
|
|
55
|
-
|
|
100
|
+
# View live request logs
|
|
101
|
+
instatunnel --logs
|
|
56
102
|
|
|
57
|
-
#
|
|
58
|
-
|
|
103
|
+
# Check usage statistics
|
|
104
|
+
instatunnel --stats
|
|
59
105
|
|
|
60
|
-
#
|
|
61
|
-
|
|
106
|
+
# Generate sharing templates
|
|
107
|
+
instatunnel --share
|
|
62
108
|
|
|
63
|
-
#
|
|
64
|
-
|
|
109
|
+
# Get help
|
|
110
|
+
instatunnel --help
|
|
65
111
|
```
|
|
66
112
|
|
|
67
|
-
##
|
|
113
|
+
## 💰 Pricing & Plans
|
|
114
|
+
|
|
115
|
+
### Free Tier (Perfect for Development)
|
|
116
|
+
- ✅ 3 simultaneous tunnels
|
|
117
|
+
- ✅ 24+ hour sessions
|
|
118
|
+
- ✅ Custom subdomains
|
|
119
|
+
- ✅ Basic analytics
|
|
120
|
+
- ✅ Password protection
|
|
121
|
+
- ✅ QR code generation
|
|
122
|
+
|
|
123
|
+
### Pro Tier ($5/month) - 40% cheaper than ngrok Pro
|
|
124
|
+
- ✅ Unlimited tunnels
|
|
125
|
+
- ✅ Custom domains
|
|
126
|
+
- ✅ Advanced analytics
|
|
127
|
+
- ✅ Team collaboration
|
|
128
|
+
- ✅ Priority support
|
|
129
|
+
|
|
130
|
+
[View full pricing →](https://instatunnel.my/pricing)
|
|
131
|
+
|
|
132
|
+
## 🏗 Why InstaTunnel vs ngrok?
|
|
133
|
+
|
|
134
|
+
| Feature | InstaTunnel Free | ngrok Free | InstaTunnel Pro | ngrok Pro |
|
|
135
|
+
|---------|------------------|------------|-----------------|-----------|
|
|
136
|
+
| **Price** | Free | Free | **$5/month** | $8/month |
|
|
137
|
+
| **Sessions** | **24+ hours** | 2 hours | Unlimited | Unlimited |
|
|
138
|
+
| **Tunnels** | **3 simultaneous** | 1 | Unlimited | Unlimited |
|
|
139
|
+
| **Subdomains** | ✅ **Custom** | ❌ Random only | ✅ Custom | ✅ Custom |
|
|
140
|
+
| **Setup Time** | **< 30 seconds** | ~1 minute | **< 30 seconds** | ~1 minute |
|
|
141
|
+
|
|
142
|
+
## 🌐 Links
|
|
143
|
+
|
|
144
|
+
- **Website**: [instatunnel.my](https://instatunnel.my)
|
|
145
|
+
- **Dashboard**: [dashboard.instatunnel.my](https://dashboard.instatunnel.my)
|
|
146
|
+
- **Documentation**: [instatunnel.my/docs](https://instatunnel.my/docs)
|
|
147
|
+
- **Status Page**: [status.instatunnel.my](https://status.instatunnel.my)
|
|
148
|
+
|
|
149
|
+
## 🚀 Get Started Now
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
npm install -g instatunnel
|
|
153
|
+
instatunnel
|
|
154
|
+
```
|
|
68
155
|
|
|
69
|
-
|
|
70
|
-
- **CLI**: Cross-platform Go binary
|
|
71
|
-
- **Web**: React dashboard for analytics
|
|
72
|
-
- **Database**: PostgreSQL for data, Redis for sessions
|
|
73
|
-
- **Proxy**: Nginx for SSL termination and routing
|
|
156
|
+
That's it! Your local app is now live on the internet. 🎉
|
|
74
157
|
|
|
75
|
-
|
|
158
|
+
---
|
|
76
159
|
|
|
77
|
-
|
|
160
|
+
Made with ❤️ for developers worldwide. [Start your free account →](https://dashboard.instatunnel.my)
|
package/bin/instatunnel
CHANGED
|
Binary file
|
package/bin/instatunnel-linux
CHANGED
|
Binary file
|
|
Binary file
|
package/bin/instatunnel-macos
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/instatunnel.exe
CHANGED
|
Binary file
|