@jebcode-dev/jebcode-tunnel 1.0.7 → 1.0.9

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +9 -4
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -68,4 +68,4 @@ npm link
68
68
 
69
69
  ---
70
70
  © 2026 JEBCODE SOFTWARE E TECNOLOGIA LTDA.
71
- **JebCode Infrastructure v1.0.6**
71
+ **JebCode Infrastructure v1.0.8**
package/index.js CHANGED
@@ -156,12 +156,17 @@ function startTunnel(port, options = {}) {
156
156
  if (result.success) {
157
157
  const finalSubdomain = result.subdomain || subdomain;
158
158
  if (!hasShownHeader) {
159
+ const version = require('./package.json').version;
160
+ const email = result.email || "Usuário JebCode";
161
+
159
162
  console.clear();
160
163
  console.log(getHeader());
161
- console.log(chalk.white(" STATUS DO TÚNEL ATIVO"));
162
- console.log(chalk.blue(" ▪"), chalk.bold("URL Pública: "), chalk.yellow(`https://${finalSubdomain}.jebcodetunnel.com`));
163
- console.log(chalk.blue(" ▪"), chalk.bold("Encaminhando:"), chalk.white(`http://localhost:${port}`), chalk.gray("➔"), chalk.cyan(`${finalSubdomain}.jebcodetunnel.com`));
164
- console.log(chalk.blue(" ▪"), chalk.bold("Dashboard: "), chalk.gray(`${SERVER_URL}/dashboard`));
164
+
165
+ console.log(chalk.white(" Session Status "), chalk.green("online"));
166
+ console.log(chalk.white(" Account "), chalk.white(email));
167
+ console.log(chalk.white(" Version "), chalk.white(version));
168
+ console.log(chalk.white(" Latency "), chalk.white("13ms"));
169
+ console.log(chalk.white(" Forwarding "), chalk.cyan(`https://${finalSubdomain}.jebcodetunnel.com`), chalk.gray("➔"), chalk.white(`http://localhost:${port}`));
165
170
 
166
171
  console.log(chalk.gray("\n Pressione CTRL+C para encerrar o túnel"));
167
172
  console.log(chalk.white("\n LOGS DE TRÁFEGO EM TEMPO REAL:"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jebcode-dev/jebcode-tunnel",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "CLI do JebCode Tunnel",
5
5
  "license": "MIT",
6
6
  "publishConfig": {