devtunnel-cli 3.0.32 โ†’ 3.0.33

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
@@ -6,7 +6,7 @@
6
6
  [![Platform](https://img.shields.io/badge/Platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey)](https://github.com/maiz-an/DevTunnel-CLI)
7
7
  [![npm version](https://img.shields.io/npm/v/devtunnel-cli)](https://www.npmjs.com/package/devtunnel-cli)
8
8
 
9
- ๐ŸŒ **Website:** [www.devtunnel-cli.mzieos.com](https://www.devtunnel-cli.mzieos.com) | ๐Ÿ“ฆ **npm:** [devtunnel-cli](https://www.npmjs.com/package/devtunnel-cli) | ๐Ÿ’ป **GitHub:** [maiz-an/DevTunnel-CLI](https://github.com/maiz-an/DevTunnel-CLI)
9
+ ๐ŸŒ **Website:** [devtunnel-cli.mzieos.com](https://devtunnel-cli.mzieos.com) | ๐Ÿ“ฆ **npm:** [devtunnel-cli](https://www.npmjs.com/package/devtunnel-cli) | ๐Ÿ’ป **GitHub:** [maiz-an/DevTunnel-CLI](https://github.com/maiz-an/DevTunnel-CLI)
10
10
 
11
11
  ---
12
12
 
@@ -52,6 +52,7 @@ devtunnel-cli # Auto-detects project type and port!
52
52
  - ๐Ÿ“„ **HTML** - Default port 5500; built-in static server if none running
53
53
  - ๐Ÿ˜ **PHP/XAMPP** - Port 80; supports htdocs subfolders (e.g. http://localhost/YourProject/)
54
54
  - ๐Ÿ”„ **Multi-Service** - Cloudflare, Ngrok, LocalTunnel fallback
55
+ - ๐Ÿ”Œ **Multiple Ports** - DevTunnel-CLI supports multiple ports; auto-detects or lets you choose
55
56
  - ๐Ÿ“น **Streaming Support** - Handles video/audio files (with limitations for large files)
56
57
 
57
58
  ---
@@ -113,13 +114,13 @@ MIT License - see [LICENSE](docs/LICENSE)
113
114
 
114
115
  ## ๐Ÿ” Search keywords
115
116
 
116
- Find this project as: **DevTunnel**, **devtunnel**, **dev-tunnel**, **Dev-Tunnel**, **DevTunnel-CLI**, **devtunnel-cli**, **dev-tunnel-cli**, **Dev-Tunnel-CLI**. Official site: [www.devtunnel-cli.mzieos.com](https://www.devtunnel-cli.mzieos.com) ยท GitHub: [maiz-an/DevTunnel-CLI](https://github.com/maiz-an/DevTunnel-CLI) ยท npm: [devtunnel-cli](https://www.npmjs.com/package/devtunnel-cli).
117
+ Find this project as: **DevTunnel**, **devtunnel**, **dev-tunnel**, **Dev-Tunnel**, **DevTunnel-CLI**, **devtunnel-cli**, **dev-tunnel-cli**, **Dev-Tunnel-CLI**. Official site: [devtunnel-cli.mzieos.com](https://devtunnel-cli.mzieos.com) ยท GitHub: [maiz-an/DevTunnel-CLI](https://github.com/maiz-an/DevTunnel-CLI) ยท npm: [devtunnel-cli](https://www.npmjs.com/package/devtunnel-cli).
117
118
 
118
119
  ---
119
120
 
120
121
  ## ๐Ÿ“ฆ Links
121
122
 
122
- - **Website**: [www.devtunnel-cli.mzieos.com](https://www.devtunnel-cli.mzieos.com)
123
+ - **Website**: [devtunnel-cli.mzieos.com](https://devtunnel-cli.mzieos.com)
123
124
  - **npm**: [devtunnel-cli](https://www.npmjs.com/package/devtunnel-cli)
124
125
  - **GitHub**: [maiz-an/DevTunnel-CLI](https://github.com/maiz-an/DevTunnel-CLI)
125
126
  - **Issues**: [GitHub Issues](https://github.com/maiz-an/DevTunnel-CLI/issues)
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "devtunnel-cli",
3
- "version": "3.0.32",
3
+ "version": "3.0.33",
4
4
  "type": "module",
5
- "description": "DevTunnel-CLI (DevTunnel, devtunnel, dev-tunnel) - Share local dev servers worldwide. Zero config tunnel. npm install -g devtunnel-cli. Works with Vite, React, Laravel, HTML, PHP/XAMPP.",
5
+ "description": "DevTunnel-CLI (DevTunnel, devtunnel, dev-tunnel) - Share local dev servers worldwide. Zero config, supports multiple ports. npm install -g devtunnel-cli. Works with Vite, React, Laravel, HTML, PHP/XAMPP.",
6
6
  "main": "src/core/start.js",
7
7
  "files": [
8
8
  "README.md",
@@ -26,6 +26,7 @@
26
26
  "devtunnel-cli",
27
27
  "dev-tunnel-cli",
28
28
  "Dev-Tunnel-CLI",
29
+ "multiple ports",
29
30
  "dev tunnel",
30
31
  "localhost tunnel",
31
32
  "cloudflare tunnel",
@@ -68,7 +69,7 @@
68
69
  "bugs": {
69
70
  "url": "https://github.com/maiz-an/DevTunnel-CLI/issues"
70
71
  },
71
- "homepage": "https://www.devtunnel-cli.mzieos.com",
72
+ "homepage": "https://devtunnel-cli.mzieos.com",
72
73
  "engines": {
73
74
  "node": ">=16.0.0"
74
75
  },
package/src/core/start.js CHANGED
@@ -17,10 +17,10 @@ function getPackageVersion() {
17
17
  const pkgPath = join(PROJECT_ROOT, "package.json");
18
18
  if (existsSync(pkgPath)) {
19
19
  const pkg = JSON.parse(readFileSync(pkgPath, "utf8"));
20
- return pkg.version || "3.0.32";
20
+ return pkg.version || "3.0.33";
21
21
  }
22
22
  } catch (err) {}
23
- return "3.0.32";
23
+ return "3.0.33";
24
24
  }
25
25
 
26
26
  // Helper to run command
@@ -272,7 +272,7 @@ async function main() {
272
272
  console.log("โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”");
273
273
  console.log("Repository: https://github.com/maiz-an/DevTunnel-CLI");
274
274
  console.log("npm Package: https://www.npmjs.com/package/devtunnel-cli");
275
- console.log("Website: https://www.devtunnel-cli.mzieos.com");
275
+ console.log("Website: https://devtunnel-cli.mzieos.com");
276
276
  console.log("โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”");
277
277
  console.log("");
278
278
 
@@ -7,16 +7,16 @@
7
7
  <meta name="keywords" content="dev tunnel, localhost tunnel, cloudflare, ngrok, port forwarding, local development, vite, react, nextjs, laravel, php, html, npm install, devtunnel">
8
8
  <meta name="author" content="maiz">
9
9
  <meta name="robots" content="index, follow">
10
- <link rel="canonical" href="https://www.devtunnel-cli.mzieos.com/">
10
+ <link rel="canonical" href="https://devtunnel-cli.mzieos.com/">
11
11
  <meta property="og:title" content="DevTunnel - Share Local Servers Worldwide">
12
12
  <meta property="og:description" content="Zero configuration tunnel for any framework. Install via npm: npm install -g devtunnel-cli">
13
- <meta property="og:url" content="https://www.devtunnel-cli.mzieos.com/">
13
+ <meta property="og:url" content="https://devtunnel-cli.mzieos.com/">
14
14
  <meta property="og:type" content="website">
15
- <meta property="og:image" content="https://www.devtunnel-cli.mzieos.com/og-image.png">
15
+ <meta property="og:image" content="https://devtunnel-cli.mzieos.com/og-image.png">
16
16
  <meta name="twitter:card" content="summary_large_image">
17
17
  <meta name="twitter:title" content="DevTunnel - Share Local Servers Worldwide">
18
18
  <meta name="twitter:description" content="Zero configuration tunnel for any framework">
19
- <meta name="twitter:image" content="https://www.devtunnel-cli.mzieos.com/og-image.png">
19
+ <meta name="twitter:image" content="https://devtunnel-cli.mzieos.com/og-image.png">
20
20
  <title>DevTunnel - Share Local Servers Worldwide</title>
21
21
  <style>
22
22
  body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; line-height: 1.6; }
@@ -34,7 +34,7 @@
34
34
 
35
35
  <div class="links">
36
36
  <a href="https://www.npmjs.com/package/devtunnel-cli" class="badge">๐Ÿ“ฆ npm Package</a>
37
- <a href="https://www.devtunnel-cli.mzieos.com" class="badge">๐ŸŒ Website</a>
37
+ <a href="https://devtunnel-cli.mzieos.com" class="badge">๐ŸŒ Website</a>
38
38
  <a href="https://github.com/maiz-an/DevTunnel-CLI" class="badge">๐Ÿ’ป GitHub</a>
39
39
  </div>
40
40
 
@@ -62,12 +62,12 @@ devtunnel-cli</code></pre>
62
62
  <h2>๐Ÿ”— Links</h2>
63
63
  <ul>
64
64
  <li><a href="https://www.npmjs.com/package/devtunnel-cli">npm Package (devtunnel-cli)</a></li>
65
- <li><a href="https://www.devtunnel-cli.mzieos.com">Official Website</a></li>
65
+ <li><a href="https://devtunnel-cli.mzieos.com">Official Website</a></li>
66
66
  <li><a href="https://github.com/maiz-an/DevTunnel-CLI">GitHub Repository</a></li>
67
67
  <li><a href="https://github.com/maiz-an/DevTunnel-CLI/issues">Report Issues</a></li>
68
68
  </ul>
69
69
 
70
70
  <hr>
71
- <p><small>Version 3.0.32 | Made with โค๏ธ for developers worldwide</small></p>
71
+ <p><small>Version 3.0.33 | Made with โค๏ธ for developers worldwide</small></p>
72
72
  </body>
73
73
  </html>