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 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 an open-source alternative to ngrok with better pricing and more generous free tier.
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
- - **Fast Setup**: One command to share your localhost
8
- - **Custom Subdomains**: Get memorable URLs like `myapp.instatunnel.my`
9
- - **Multiple Tunnels**: Run several tunnels simultaneously
10
- - **Analytics Dashboard**: Track requests, bandwidth, and visitor stats
11
- - **Extended Sessions**: 24+ hour sessions on free tier
12
- - **Custom Domains**: Use your own domain (Pro tier)
13
- - **Team Collaboration**: Share tunnels with your team
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
- # Download latest release
20
- curl -sSL https://install.instatunnel.my | bash
22
+ # Install globally via NPM (recommended)
23
+ npm install -g instatunnel
21
24
 
22
- # Or with Go
23
- go install github.com/instatunnel/cli@latest
25
+ # Verify installation
26
+ instatunnel --version
24
27
  ```
25
28
 
26
- ### Start Tunneling
29
+ ### Start Tunneling (Zero Config!)
27
30
  ```bash
28
- # Share your local port 3000
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 8080 --subdomain api &
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
- ## Development
67
+ ## 📋 Common Usage Patterns
40
68
 
41
- ### Prerequisites
42
- - Go 1.21+
43
- - Node.js 18+
44
- - PostgreSQL 15+
45
- - Redis 7+
46
- - Docker & Docker Compose
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
- # Clone repository
51
- git clone https://github.com/instatunnel/instatunnel
52
- cd instatunnel
94
+ # List active tunnels
95
+ instatunnel --list
96
+
97
+ # Stop specific tunnel
98
+ instatunnel --kill myapp
53
99
 
54
- # Start services
55
- docker-compose up -d
100
+ # View live request logs
101
+ instatunnel --logs
56
102
 
57
- # Run server
58
- cd server && go run cmd/main.go
103
+ # Check usage statistics
104
+ instatunnel --stats
59
105
 
60
- # Run web dashboard
61
- cd web && npm install && npm start
106
+ # Generate sharing templates
107
+ instatunnel --share
62
108
 
63
- # Build CLI
64
- cd cli && go build -o instatunnel cmd/main.go
109
+ # Get help
110
+ instatunnel --help
65
111
  ```
66
112
 
67
- ## Architecture
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
- - **Server**: Go backend with WebSocket tunneling
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
- ## License
158
+ ---
76
159
 
77
- Open source under MIT License.
160
+ Made with ❤️ for developers worldwide. [Start your free account →](https://dashboard.instatunnel.my)
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.1",
3
+ "version": "1.1.3",
4
4
  "description": "Expose your localhost to the internet instantly - the ngrok alternative that's 40% cheaper with superior UX",
5
5
  "main": "install.js",
6
6
  "bin": {