devtunnel-cli 3.0.36 โ 3.0.38
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 +3 -3
- package/package.json +5 -3
- package/src/core/start.js +3 -3
- package/src/utils/pages/index.html +7 -7
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://github.com/maiz-an/DevTunnel-CLI)
|
|
7
7
|
[](https://www.npmjs.com/package/devtunnel-cli)
|
|
8
8
|
|
|
9
|
-
๐ **Website:** [
|
|
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
11
|
---
|
|
12
12
|
|
|
@@ -213,13 +213,13 @@ MIT License - see [LICENSE](docs/LICENSE)
|
|
|
213
213
|
|
|
214
214
|
## ๐ Search keywords
|
|
215
215
|
|
|
216
|
-
Find this project as: **DevTunnel**, **devtunnel**, **dev-tunnel**, **Dev-Tunnel**, **DevTunnel-CLI**, **devtunnel-cli**, **dev-tunnel-cli**, **Dev-Tunnel-CLI**. npm (install here): [devtunnel-cli](https://www.npmjs.com/package/devtunnel-cli) ยท Docs: [
|
|
216
|
+
Find this project as: **DevTunnel**, **devtunnel**, **dev-tunnel**, **Dev-Tunnel**, **DevTunnel-CLI**, **devtunnel-cli**, **dev-tunnel-cli**, **Dev-Tunnel-CLI**. npm (install here): [devtunnel-cli](https://www.npmjs.com/package/devtunnel-cli) ยท Docs: [devtunnel-cli.vercel.app](https://devtunnel-cli.vercel.app) ยท GitHub: [maiz-an/DevTunnel-CLI](https://github.com/maiz-an/DevTunnel-CLI).
|
|
217
217
|
|
|
218
218
|
---
|
|
219
219
|
|
|
220
220
|
## ๐ฆ Links
|
|
221
221
|
|
|
222
|
-
- **Website**: [
|
|
222
|
+
- **Website**: [devtunnel-cli.vercel.app](https://devtunnel-cli.vercel.app)
|
|
223
223
|
- **npm**: [devtunnel-cli](https://www.npmjs.com/package/devtunnel-cli)
|
|
224
224
|
- **GitHub**: [maiz-an/DevTunnel-CLI](https://github.com/maiz-an/DevTunnel-CLI)
|
|
225
225
|
- **Issues**: [GitHub Issues](https://github.com/maiz-an/DevTunnel-CLI/issues)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devtunnel-cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.38",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "DevTunnel-CLI (DevTunnel, devtunnel, dev-tunnel) - Development tool for sharing local servers worldwide. Zero config, supports multiple ports. For dev, testing, demos, webhook debugging. Not for production. npm install -g devtunnel-cli. Works with Vite, React, Laravel, HTML, PHP/XAMPP.",
|
|
6
6
|
"main": "src/core/start.js",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"start": "node src/core/RUN.js",
|
|
16
16
|
"dev": "node src/core/RUN.js",
|
|
17
17
|
"run": "node src/core/RUN.js",
|
|
18
|
-
"tunnel": "node src/core/index.js"
|
|
18
|
+
"tunnel": "node src/core/index.js",
|
|
19
|
+
"sync-version": "node sync-version.js"
|
|
19
20
|
},
|
|
20
21
|
"keywords": [
|
|
21
22
|
"DevTunnel-CLI",
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
],
|
|
63
64
|
"author": "maiz",
|
|
64
65
|
"license": "MIT",
|
|
66
|
+
"preferGlobal": true,
|
|
65
67
|
"repository": {
|
|
66
68
|
"type": "git",
|
|
67
69
|
"url": "git+https://github.com/maiz-an/DevTunnel-CLI.git"
|
|
@@ -69,7 +71,7 @@
|
|
|
69
71
|
"bugs": {
|
|
70
72
|
"url": "https://github.com/maiz-an/DevTunnel-CLI/issues"
|
|
71
73
|
},
|
|
72
|
-
"homepage": "https://
|
|
74
|
+
"homepage": "https://devtunnel-cli.vercel.app",
|
|
73
75
|
"engines": {
|
|
74
76
|
"node": ">=16.0.0"
|
|
75
77
|
},
|
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.
|
|
20
|
+
return pkg.version || "3.0.38";
|
|
21
21
|
}
|
|
22
22
|
} catch (err) {}
|
|
23
|
-
return "3.0.
|
|
23
|
+
return "3.0.38";
|
|
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://
|
|
275
|
+
console.log("Website: https://devtunnel-cli.vercel.app");
|
|
276
276
|
console.log("โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ");
|
|
277
277
|
console.log("");
|
|
278
278
|
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
content="dev tunnel, localhost tunnel, cloudflare, ngrok, port forwarding, local development, vite, react, nextjs, laravel, php, html, npm install, devtunnel">
|
|
11
11
|
<meta name="author" content="maiz">
|
|
12
12
|
<meta name="robots" content="index, follow">
|
|
13
|
-
<link rel="canonical" href="https://
|
|
13
|
+
<link rel="canonical" href="https://devtunnel-cli.vercel.app/">
|
|
14
14
|
<meta property="og:title" content="DevTunnel - Share Local Servers Worldwide">
|
|
15
15
|
<meta property="og:description"
|
|
16
16
|
content="Zero configuration tunnel for any framework. Install via npm: npm install -g devtunnel-cli">
|
|
17
|
-
<meta property="og:url" content="https://
|
|
17
|
+
<meta property="og:url" content="https://devtunnel-cli.vercel.app/">
|
|
18
18
|
<meta property="og:type" content="website">
|
|
19
|
-
<meta property="og:image" content="https://
|
|
19
|
+
<meta property="og:image" content="https://devtunnel-cli.vercel.app/og-image.png">
|
|
20
20
|
<meta name="twitter:card" content="summary_large_image">
|
|
21
21
|
<meta name="twitter:title" content="DevTunnel - Share Local Servers Worldwide">
|
|
22
22
|
<meta name="twitter:description" content="Zero configuration tunnel for any framework">
|
|
23
|
-
<meta name="twitter:image" content="https://
|
|
23
|
+
<meta name="twitter:image" content="https://devtunnel-cli.vercel.app/og-image.png">
|
|
24
24
|
<title>DevTunnel - Share Local Servers Worldwide</title>
|
|
25
25
|
<style>
|
|
26
26
|
body {
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
|
|
78
78
|
<div class="links">
|
|
79
79
|
<a href="https://www.npmjs.com/package/devtunnel-cli" class="badge">๐ฆ npm Package</a>
|
|
80
|
-
<a href="https://
|
|
80
|
+
<a href="https://devtunnel-cli.vercel.app" class="badge">๐ Website</a>
|
|
81
81
|
<a href="https://github.com/maiz-an/DevTunnel-CLI" class="badge">๐ป GitHub</a>
|
|
82
82
|
</div>
|
|
83
83
|
|
|
@@ -106,13 +106,13 @@ devtunnel-cli</code></pre>
|
|
|
106
106
|
<h2>๐ Links</h2>
|
|
107
107
|
<ul>
|
|
108
108
|
<li><a href="https://www.npmjs.com/package/devtunnel-cli">npm Package (devtunnel-cli)</a></li>
|
|
109
|
-
<li><a href="https://
|
|
109
|
+
<li><a href="https://devtunnel-cli.vercel.app">Official Website</a></li>
|
|
110
110
|
<li><a href="https://github.com/maiz-an/DevTunnel-CLI">GitHub Repository</a></li>
|
|
111
111
|
<li><a href="https://github.com/maiz-an/DevTunnel-CLI/issues">Report Issues</a></li>
|
|
112
112
|
</ul>
|
|
113
113
|
|
|
114
114
|
<hr>
|
|
115
|
-
<p><small>Version 3.0.
|
|
115
|
+
<p><small>Version 3.0.38 | Made with โค๏ธ for developers worldwide</small></p>
|
|
116
116
|
</body>
|
|
117
117
|
|
|
118
118
|
</html>
|