httptmux 1.0.2 → 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.
- package/CHANGELOG.md +2 -0
- package/README.md +1 -7
- package/package.json +17 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -15,8 +15,6 @@ npm install -g httptmux
|
|
|
15
15
|
|
|
16
16
|
## Usage
|
|
17
17
|
|
|
18
|
-
---
|
|
19
|
-
|
|
20
18
|
Desktop
|
|
21
19
|
`bash
|
|
22
20
|
httptmuxd
|
|
@@ -28,9 +26,7 @@ httptmux
|
|
|
28
26
|
|
|
29
27
|
---
|
|
30
28
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
Examples:
|
|
29
|
+
## Examples
|
|
34
30
|
`bash
|
|
35
31
|
httptmux --version
|
|
36
32
|
httptmuxd --version
|
|
@@ -38,8 +34,6 @@ httptmuxd --version
|
|
|
38
34
|
|
|
39
35
|
---
|
|
40
36
|
|
|
41
|
-
---
|
|
42
|
-
|
|
43
37
|
Menu options:
|
|
44
38
|
- Make new request
|
|
45
39
|
- View history
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "httptmux",
|
|
3
|
-
"version": "1.0.
|
|
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
|
}
|