httptmux 1.0.4 → 1.0.6

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/CHANGELOG.md CHANGED
@@ -9,3 +9,7 @@ v1.0.2 (11/1/2026): Added CHANGELOG
9
9
  v1.0.3 (11/1/2026): Updated README.md to look better
10
10
 
11
11
  v1.0.4 (11/1/2026): Updated README.md again
12
+
13
+ v1.0.5 (11/1/2026): Updated README.md again
14
+
15
+ v1.0.6: Fixed the menu saying httpnode instead of httptmux on Termux
package/LICENSE CHANGED
@@ -1,6 +1,10 @@
1
1
  MIT License
2
2
 
3
+ <<<<<<< HEAD
4
+ Copyright (c) 2026 somerandomdevig
5
+ =======
3
6
  Copyright (c) 2026 somerandondevig
7
+ >>>>>>> 1e8905b (Initial commit: publish httptmux repo)
4
8
 
5
9
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
10
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  An interactive CLI tool originally meant for termux but now extended to desktops with support for JWT requests
4
4
 
5
- ---
6
-
7
5
  ## Installation
8
6
 
9
7
  `
@@ -17,6 +15,7 @@ Desktop
17
15
  `
18
16
  httptmuxd
19
17
  `
18
+
20
19
  Termux
21
20
  `
22
21
  httptmux
@@ -27,6 +26,8 @@ httptmux
27
26
  ## Examples
28
27
  `
29
28
  httptmux --version
29
+ `
30
+ `
30
31
  httptmuxd --version
31
32
  `
32
33
 
package/index.js CHANGED
@@ -189,7 +189,7 @@ async function main() {
189
189
  if (showHelp) return printHelp();
190
190
  if (showVersion) return printVersion();
191
191
 
192
- console.log(chalk.cyan("httpnode"));
192
+ console.log(chalk.cyan("httptmux"));
193
193
 
194
194
  let keepGoing = true;
195
195
  while (keepGoing) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "httptmux",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "httptmux is an interactive CLI tool for API requests. Originally made for Termux (hence the name), but decided to make a second index.js file for desktops",
5
5
  "type": "module",
6
6
  "main": "index.js",