@churivibhav/reqex 0.1.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/LICENSE +674 -0
- package/README.md +57 -0
- package/dist/cli.js +1936 -0
- package/dist/cli.js.map +1 -0
- package/package.json +51 -0
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# reqex
|
|
2
|
+
|
|
3
|
+
Terminal HTTP client for `.http` / `.rest` files — Postman-like workflow in the TUI.
|
|
4
|
+
|
|
5
|
+
- **UI**: [Rezi](https://rezitui.dev) (`@rezi-ui`) three-pane layout (files | editor | response)
|
|
6
|
+
- **Engine**: [httpyac](https://httpyac.github.io/) — full `.http` compatibility
|
|
7
|
+
- **Target**: Kitty / glibc Linux, macOS, Windows (Rezi native binaries)
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g @churivibhav/reqex
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
reqex # open cwd
|
|
19
|
+
reqex ./api # open folder
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Keybindings (default VS Code preset)
|
|
23
|
+
|
|
24
|
+
| Key | Action |
|
|
25
|
+
|-----|--------|
|
|
26
|
+
| `F5` | Send request under cursor |
|
|
27
|
+
| `Ctrl+Enter` / `Alt+Enter` | Send (Kitty keyboard protocol) |
|
|
28
|
+
| `Ctrl+X` | Cancel in-flight request |
|
|
29
|
+
| `Tab` / `Shift+Tab` | Cycle panes |
|
|
30
|
+
| `Ctrl+1/2/3` | Jump to Files / Editor / Response |
|
|
31
|
+
| `Ctrl+S` | Save file |
|
|
32
|
+
| `Ctrl+E` | Environment switcher |
|
|
33
|
+
| `Ctrl+Shift+P` / `F2` | Command palette |
|
|
34
|
+
| `F1` / `?` | Quick help |
|
|
35
|
+
| `Ctrl+/` | Full keybindings list |
|
|
36
|
+
| `F11` / `z` | Zoom pane |
|
|
37
|
+
| `Ctrl+Q` | Quit |
|
|
38
|
+
|
|
39
|
+
Configurable bindings: `~/.config/reqex/keybindings.json` (or `%APPDATA%\\reqex` on Windows). Project overrides in `.reqex/keybindings.json`. Set `REQEX_CONFIG_DIR` to override the config root.
|
|
40
|
+
|
|
41
|
+
## Development
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
npm install
|
|
45
|
+
npm run dev
|
|
46
|
+
npm test
|
|
47
|
+
npm run build
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Platform notes
|
|
51
|
+
|
|
52
|
+
- Requires **Node.js >= 20**
|
|
53
|
+
- Rezi uses prebuilt native binaries (glibc Linux x64/arm64, macOS, Windows). **Alpine/musl is not supported.**
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
GPL-3.0-or-later
|