instatunnel 1.0.20 → 1.0.22
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 +60 -52
- package/package.json +1 -1
- package/bin/instatunnel +0 -0
- package/bin/instatunnel-darwin-amd64 +0 -0
- package/bin/instatunnel-darwin-arm64 +0 -0
- package/bin/instatunnel-freebsd +0 -0
- package/bin/instatunnel-freebsd-amd64 +0 -0
- package/bin/instatunnel-linux-386 +0 -0
- package/bin/instatunnel-linux-amd64 +0 -0
- package/bin/instatunnel-linux-amd64-v1.0.1 +0 -0
- package/bin/instatunnel-linux-arm64 +0 -0
- package/bin/instatunnel-linux-arm64-new +0 -0
- package/bin/instatunnel-openbsd +0 -0
- package/bin/instatunnel-openbsd-amd64 +0 -0
- package/bin/instatunnel-windows-386.exe +0 -0
- package/bin/instatunnel-windows-amd64.exe +0 -0
- package/bin/instatunnel-windows-arm64.exe +0 -0
- package/bin/instatunnel.cmd +0 -5
- package/bin/instatunnel.exe +0 -0
- package/bin/instatunnel.ps1 +0 -5
- package/bin/it +0 -0
- package/bin/it-darwin-amd64 +0 -0
- package/bin/it-darwin-arm64 +0 -0
- package/bin/it-freebsd-amd64 +0 -0
- package/bin/it-linux-386 +0 -0
- package/bin/it-linux-amd64 +0 -0
- package/bin/it-linux-amd64-v1.0.1 +0 -0
- package/bin/it-linux-arm64 +0 -0
- package/bin/it-openbsd-amd64 +0 -0
- package/bin/it-windows-386.exe +0 -0
- package/bin/it-windows-amd64.exe +0 -0
- package/bin/it.cmd +0 -5
- package/bin/it.exe +0 -0
- package/bin/it.ps1 +0 -5
package/README.md
CHANGED
|
@@ -1,69 +1,77 @@
|
|
|
1
|
-
# InstaTunnel
|
|
1
|
+
# InstaTunnel
|
|
2
2
|
|
|
3
|
-
|
|
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.
|
|
4
4
|
|
|
5
|
-
##
|
|
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
|
|
14
|
+
|
|
15
|
+
## Quick Start
|
|
16
|
+
|
|
17
|
+
### Install CLI
|
|
7
18
|
```bash
|
|
8
|
-
#
|
|
9
|
-
|
|
19
|
+
# Download latest release
|
|
20
|
+
curl -sSL https://install.instatunnel.my | bash
|
|
10
21
|
|
|
11
|
-
#
|
|
12
|
-
instatunnel
|
|
13
|
-
# or use the short alias
|
|
14
|
-
it 3000
|
|
22
|
+
# Or with Go
|
|
23
|
+
go install github.com/instatunnel/cli@latest
|
|
15
24
|
```
|
|
16
25
|
|
|
17
|
-
|
|
26
|
+
### Start Tunneling
|
|
27
|
+
```bash
|
|
28
|
+
# Share your local port 3000
|
|
29
|
+
instatunnel 3000
|
|
30
|
+
|
|
31
|
+
# Use custom subdomain
|
|
32
|
+
instatunnel 3000 --subdomain myapp
|
|
18
33
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
- **🎯 Framework detection** - Auto-detect React, Next.js, Laravel
|
|
34
|
+
# Multiple tunnels
|
|
35
|
+
instatunnel 3000 &
|
|
36
|
+
instatunnel 8080 --subdomain api &
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Development
|
|
26
40
|
|
|
27
|
-
|
|
41
|
+
### Prerequisites
|
|
42
|
+
- Go 1.21+
|
|
43
|
+
- Node.js 18+
|
|
44
|
+
- PostgreSQL 15+
|
|
45
|
+
- Redis 7+
|
|
46
|
+
- Docker & Docker Compose
|
|
28
47
|
|
|
48
|
+
### Local Setup
|
|
29
49
|
```bash
|
|
30
|
-
#
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
# Framework shortcuts
|
|
35
|
-
instatunnel --react # Auto-detect React (port 3000)
|
|
36
|
-
instatunnel --next # Auto-detect Next.js (port 3000)
|
|
37
|
-
instatunnel --laravel # Auto-detect Laravel (port 8000)
|
|
38
|
-
|
|
39
|
-
# Security features
|
|
40
|
-
instatunnel 3000 --password secret # Password protect tunnel
|
|
41
|
-
instatunnel 3000 --auth user:pass # Basic authentication
|
|
42
|
-
|
|
43
|
-
# Mobile testing
|
|
44
|
-
instatunnel 3000 --qr # Show QR code for mobile
|
|
45
|
-
|
|
46
|
-
# Management
|
|
47
|
-
instatunnel --list # List active tunnels
|
|
48
|
-
instatunnel --kill myapp # Stop specific tunnel
|
|
49
|
-
instatunnel --share # Generate sharing templates
|
|
50
|
-
```
|
|
50
|
+
# Clone repository
|
|
51
|
+
git clone https://github.com/instatunnel/instatunnel
|
|
52
|
+
cd instatunnel
|
|
51
53
|
|
|
52
|
-
|
|
54
|
+
# Start services
|
|
55
|
+
docker-compose up -d
|
|
53
56
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
57
|
+
# Run server
|
|
58
|
+
cd server && go run cmd/main.go
|
|
59
|
+
|
|
60
|
+
# Run web dashboard
|
|
61
|
+
cd web && npm install && npm start
|
|
62
|
+
|
|
63
|
+
# Build CLI
|
|
64
|
+
cd cli && go build -o instatunnel cmd/main.go
|
|
65
|
+
```
|
|
62
66
|
|
|
63
|
-
##
|
|
67
|
+
## Architecture
|
|
64
68
|
|
|
65
|
-
|
|
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
|
|
66
74
|
|
|
67
|
-
##
|
|
75
|
+
## License
|
|
68
76
|
|
|
69
|
-
MIT
|
|
77
|
+
Open source under MIT License.
|
package/package.json
CHANGED
package/bin/instatunnel
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/instatunnel-freebsd
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/instatunnel-openbsd
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/instatunnel.cmd
DELETED
package/bin/instatunnel.exe
DELETED
|
Binary file
|
package/bin/instatunnel.ps1
DELETED
package/bin/it
DELETED
|
Binary file
|
package/bin/it-darwin-amd64
DELETED
|
Binary file
|
package/bin/it-darwin-arm64
DELETED
|
Binary file
|
package/bin/it-freebsd-amd64
DELETED
|
Binary file
|
package/bin/it-linux-386
DELETED
|
Binary file
|
package/bin/it-linux-amd64
DELETED
|
Binary file
|
|
Binary file
|
package/bin/it-linux-arm64
DELETED
|
Binary file
|
package/bin/it-openbsd-amd64
DELETED
|
Binary file
|
package/bin/it-windows-386.exe
DELETED
|
Binary file
|
package/bin/it-windows-amd64.exe
DELETED
|
Binary file
|
package/bin/it.cmd
DELETED
package/bin/it.exe
DELETED
|
Binary file
|