httptmux 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.
package/CHANGELOG.md CHANGED
@@ -15,3 +15,7 @@ v1.0.5 (11/1/2026): Updated README.md again
15
15
  v1.0.6 (11/1/2026): Fixed the menu saying httpnode instead of httptmux on Termux
16
16
 
17
17
  v1.0.7 (11/1/2026): Updated changelog
18
+
19
+ v1.0.8 (11/1/2026): Updated README.md with badges
20
+
21
+ v1.0.9 (13/1/2026): Fixed thw --help option saying "Usage: nreq" instead of "Usage: httptmux" (regardless of which platform you're using it on)
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # httptmux
2
2
 
3
+ ![npm version](https://img.shields.io/npm/v/httptmux)
4
+ ![npm downloads](https://img.shields.io/npm/dw/httptmux)
5
+ ![npm total downloads](https://img.shields.io/npm/dt/httptmux)
6
+
3
7
  An interactive CLI tool originally meant for termux but now extended to desktops with support for JWT requests
4
8
 
5
9
  ## Installation
package/index.js CHANGED
@@ -28,7 +28,7 @@ function logVerbose(message) {
28
28
  function printHelp() {
29
29
  console.log(chalk.cyan("\nhttptmux CLI Help"));
30
30
  console.log(`
31
- Usage: nreq [options]
31
+ Usage: httptmux [options]
32
32
 
33
33
  Options:
34
34
  --help Show this help message
package/index_desktop.js CHANGED
@@ -28,7 +28,7 @@ function logVerbose(message) {
28
28
  function printHelp() {
29
29
  console.log(chalk.cyan("\nhttptmux (desktop) CLI Help"));
30
30
  console.log(`
31
- Usage: nreq [options]
31
+ Usage: httptmux [options]
32
32
 
33
33
  Options:
34
34
  --help Show this help message
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "httptmux",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
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",