postboy-tui 1.0.8 → 1.3.0
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/README.md +7 -16
- package/dist/cli.js +68880 -0
- package/package.json +15 -4
- package/dist/cli +0 -0
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
A modern, terminal-based API testing and development tool with a clean TUI (Text User Interface). Postboy helps you design, test, and debug HTTP requests efficiently, all from your terminal.
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/postboy-tui)
|
|
6
|
+
[](https://www.npmjs.com/package/postboy-tui)
|
|
7
|
+
[](LICENSE)
|
|
5
8
|
---
|
|
6
9
|
|
|
7
10
|
## Table of Contents
|
|
@@ -33,27 +36,15 @@ A modern, terminal-based API testing and development tool with a clean TUI (Text
|
|
|
33
36
|
## Installation
|
|
34
37
|
|
|
35
38
|
```bash
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
# Or using npm
|
|
40
|
-
npm install
|
|
39
|
+
npm i -g postboy-tui@latest
|
|
40
|
+
#or
|
|
41
|
+
bun i -g postboy-tui@latest
|
|
41
42
|
```
|
|
42
43
|
|
|
43
44
|
---
|
|
44
45
|
|
|
45
46
|
## Usage
|
|
46
47
|
|
|
47
|
-
### Install the app
|
|
48
|
-
|
|
49
|
-
```bash
|
|
50
|
-
npm i -g postboy-tui@latest
|
|
51
|
-
#or
|
|
52
|
-
bun i -g postboy-tui@latest
|
|
53
|
-
# Start the TUI (Text User Interface)
|
|
54
|
-
postboy-tui ui
|
|
55
|
-
```
|
|
56
|
-
|
|
57
48
|
### CLI Commands
|
|
58
49
|
|
|
59
50
|
- **Launch TUI interface:**
|
|
@@ -63,7 +54,7 @@ postboy-tui ui
|
|
|
63
54
|
|
|
64
55
|
- **Send a test API request (interactive prompt):**
|
|
65
56
|
```bash
|
|
66
|
-
postboy-tui
|
|
57
|
+
postboy-tui run
|
|
67
58
|
```
|
|
68
59
|
|
|
69
60
|
- **List available mock API endpoints:**
|