devtunnel-cli 3.0.42 → 3.0.44

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
@@ -8,15 +8,15 @@
8
8
 
9
9
  🌐 **Website:** [devtunnel-cli.vercel.app](https://devtunnel-cli.vercel.app) | 📦 **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
+ **Install (global):** `npm i -g devtunnel-cli`
12
+
11
13
  ---
12
14
 
13
15
  ## 🎯 Purpose & Scope
14
16
 
15
17
  DevTunnel-CLI is designed for **DEVELOPMENT**, **TESTING**, **DEMOS**, and **WEBHOOK DEBUGGING**. It provides fast, frictionless access to your local dev servers from anywhere.
16
18
 
17
- DevTunnel-CLI is optimized for development workflows rapid sharing, demos, and debugging. For production-facing use, consider managed or enterprise tunnel solutions that provide governance, identity, and long-lived endpoints.
18
-
19
- DevTunnel-CLI is built for developers who need instant, temporary public URLs to share work-in-progress, test on mobile devices, demo features to clients, or debug webhooks from third-party services.
19
+ DevTunnel-CLI is built for developers who need instant public URLs to share work-in-progress, test on mobile devices, demo features to clients, or debug webhooks from third-party services.
20
20
 
21
21
  ---
22
22
 
@@ -67,7 +67,7 @@ devtunnel-cli # Auto-detects project type and port!
67
67
  - 🐘 **PHP/XAMPP** - Port 80; supports htdocs subfolders (e.g. <http://localhost/YourProject/>)
68
68
  - 🔄 **Multi-Service** - Cloudflare, Ngrok, LocalTunnel fallback
69
69
  - 🔌 **Multiple Ports** - DevTunnel-CLI supports multiple ports; auto-detects or lets you choose
70
- - 📹 **Streaming Support** - Handles video/audio files (with limitations for large files)
70
+ - 📹 **Streaming Support** - Handles video/audio files
71
71
 
72
72
  ---
73
73
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "devtunnel-cli",
3
- "version": "3.0.42",
3
+ "version": "3.0.44",
4
4
  "type": "module",
5
- "description": "DevTunnel-CLI — fast, zero-config tool to share local servers for development, testing, demos, and webhook debugging. Install globally: npm i -g devtunnel-cli",
5
+ "description": "DevTunnel-CLI — fast, zero-config tool to share local servers for development, testing, demos, and webhook debugging. npm i -g devtunnel-cli.",
6
6
  "main": "src/core/start.js",
7
7
  "files": [
8
8
  "README.md",
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.41";
20
+ return pkg.version || "3.0.44";
21
21
  }
22
22
  } catch (err) { }
23
- return "3.0.41";
23
+ return "3.0.44";
24
24
  }
25
25
 
26
26
  // Helper to run command
@@ -112,7 +112,7 @@ devtunnel-cli</code></pre>
112
112
  </ul>
113
113
 
114
114
  <hr>
115
- <p><small>Version <span id="pkg-version">3.0.41</span> | Made with ❤︎ for developers worldwide</small></p>
115
+ <p><small>Version <span id="pkg-version">3.0.44</span> | Made with ❤︎ for developers worldwide</small></p>
116
116
 
117
117
  <script>
118
118
  (async function () {