httptmux 1.0.2 → 1.0.4

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 +4 -0
  2. package/README.md +5 -13
  3. package/package.json +17 -2
package/CHANGELOG.md CHANGED
@@ -5,3 +5,7 @@ v1.0.0 (11/1/2026): Inital release
5
5
  v1.0.1 (11/1/2026): Added LICENSE and README.md
6
6
 
7
7
  v1.0.2 (11/1/2026): Added CHANGELOG
8
+
9
+ v1.0.3 (11/1/2026): Updated README.md to look better
10
+
11
+ v1.0.4 (11/1/2026): Updated README.md again
package/README.md CHANGED
@@ -6,40 +6,32 @@ An interactive CLI tool originally meant for termux but now extended to desktops
6
6
 
7
7
  ## Installation
8
8
 
9
- `bash
9
+ `
10
10
  npm install -g httptmux
11
11
  `
12
12
 
13
- ---
14
-
15
13
 
16
14
  ## Usage
17
15
 
18
- ---
19
-
20
16
  Desktop
21
- `bash
17
+ `
22
18
  httptmuxd
23
19
  `
24
20
  Termux
25
- `bash
21
+ `
26
22
  httptmux
27
23
  `
28
24
 
29
25
  ---
30
26
 
31
- ---
32
-
33
- Examples:
34
- `bash
27
+ ## Examples
28
+ `
35
29
  httptmux --version
36
30
  httptmuxd --version
37
31
  `
38
32
 
39
33
  ---
40
34
 
41
- ---
42
-
43
35
  Menu options:
44
36
  - Make new request
45
37
  - View history
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "httptmux",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
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
  }