httptmux 1.0.1 → 1.0.3

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/CHANGELOG.md +9 -0
  2. package/README.md +51 -0
  3. package/package.json +17 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ v1.0.0 (11/1/2026): Inital release
4
+
5
+ v1.0.1 (11/1/2026): Added LICENSE and README.md
6
+
7
+ v1.0.2 (11/1/2026): Added CHANGELOG
8
+
9
+ v1.0.3 (11/1/2026): Updated README.md to look better
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # httptmux
2
+
3
+ An interactive CLI tool originally meant for termux but now extended to desktops with support for JWT requests
4
+
5
+ ---
6
+
7
+ ## Installation
8
+
9
+ `bash
10
+ npm install -g httptmux
11
+ `
12
+
13
+ ---
14
+
15
+
16
+ ## Usage
17
+
18
+ Desktop
19
+ `bash
20
+ httptmuxd
21
+ `
22
+ Termux
23
+ `bash
24
+ httptmux
25
+ `
26
+
27
+ ---
28
+
29
+ ## Examples
30
+ `bash
31
+ httptmux --version
32
+ httptmuxd --version
33
+ `
34
+
35
+ ---
36
+
37
+ Menu options:
38
+ - Make new request
39
+ - View history
40
+ - Re-run fron history
41
+ - Search history
42
+ - Set JWT token
43
+ - Help
44
+ - Version
45
+ - Exit
46
+
47
+ ---
48
+
49
+ License
50
+
51
+ MIT © 2026 somerandondevig
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "httptmux",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
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",
@@ -13,5 +13,20 @@
13
13
  "inquirer": "^9.0.0",
14
14
  "chalk": "^5.3.0"
15
15
  },
16
- "license": "MIT"
16
+ "license": "MIT",
17
+ "keywords": [
18
+ "http",
19
+ "cli",
20
+ "termux",
21
+ "desktop",
22
+ "api",
23
+ "requests",
24
+ "axios",
25
+ "interactive",
26
+ "jwt",
27
+ "developer-tools",
28
+ "nodejs",
29
+ "command-line",
30
+ "automation"
31
+ ]
17
32
  }