-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Philipp Reiter
committed
Aug 17, 2024
1 parent
ff6e3fe
commit 4ca6fbb
Showing
2 changed files
with
179 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,26 @@ edition = "2021" | |
authors = ["preiter <[email protected]>"] | ||
description = "A TUI based gRPC client" | ||
repository = "https://github.com/preiter93/wireman" | ||
keywords = ["gRPC", "proto", "TUI"] | ||
keywords = ["wiream", "ratatui", "grpc", "client", "app"] | ||
readme = "README.md" | ||
license = "MIT" | ||
rust-version = "1.70.0" | ||
|
||
[dependencies] | ||
core = { package = "wireman-core", path = "../wireman-core", version = "0.1.0" } | ||
config = { package = "wireman-config", path = "../wireman-config", version = "0.1.0" } | ||
logger = { package = "wireman-logger", path = "../wireman-logger", version = "0.1.0" } | ||
theme = { package = "wireman-theme", path = "../wireman-theme", version = "0.1.0" } | ||
event-handler = { package = "wireman-event-handler", path = "../wireman-event-handler", version = "0.1.0" } | ||
# core = { package = "wireman-core", path = "../wireman-core", version = "0.1.0" } | ||
# config = { package = "wireman-config", path = "../wireman-config", version = "0.1.0" } | ||
# logger = { package = "wireman-logger", path = "../wireman-logger", version = "0.1.0" } | ||
# theme = { package = "wireman-theme", path = "../wireman-theme", version = "0.1.0" } | ||
# event-handler = { package = "wireman-event-handler", path = "../wireman-event-handler", version = "0.1.0" } | ||
|
||
core = { package = "wireman-core", version = "0.1.0" } | ||
config = { package = "wireman-config", version = "0.1.0" } | ||
logger = { package = "wireman-logger", version = "0.1.0" } | ||
theme = { package = "wireman-theme", version = "0.1.0" } | ||
event-handler = { package = "wireman-event-handler", version = "0.1.0" } | ||
|
||
tui-widget-list = { version = "0.12.0" } | ||
# tui-widget-list = { git = "https://github.com/preiter93/tui-widget-list.git", branch = "v0.9" } | ||
# tui-widget-list = { path = "../../tui-widget-list", version = "0.9.0"} | ||
edtui = "0.7" | ||
# edtui = { version = "0.7", path = "../../edtui" } | ||
# edtui = { package = "edtui", version = "0.7", git = "https://github.com/preiter93/edtui.git" } | ||
crossterm = { version = "0.28", features = ["events", "event-stream"] } | ||
ratatui = "0.28" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
<p align="center"> | ||
<img src="https://github.com/preiter93/wireman/blob/main/resources/logo-light.png?raw=true#gh-light-mode-only" width="700"/> | ||
<img src="https://github.com/preiter93/wireman/blob/main/resources/logo-dark.png?raw=true#gh-dark-mode-only" width="700"/> | ||
</p> | ||
|
||
<div align="center"> | ||
|
||
[![Continuous Integration](https://github.com/preiter93/wireman/actions/workflows/ci.yml/badge.svg)](https://github.com/preiter93/wireman/actions/workflows/ci.yml) | ||
|
||
</div> | ||
|
||
# What is WireMan? | ||
|
||
WireMan is a terminal-based gRPC client with a user-friendly interface. It reads `.proto` files from a config file and keeps a history of requests. | ||
WireMan is an ideal choice for developers testing gRPC endpoints directly from the terminal. | ||
|
||
# Getting Started with WireMan | ||
|
||
This guide will walk you through the steps to set up and run WireMan. | ||
|
||
## Prerequisites | ||
|
||
- Rust: [Minimum required Rust version is 1.70] ([Installation Guide](https://www.rust-lang.org/tools/install)) | ||
|
||
## Installation | ||
|
||
### Install with cargo | ||
|
||
``` | ||
cargo install wireman | ||
``` | ||
|
||
### Install manually | ||
|
||
1. Clone the repository: | ||
|
||
```bash | ||
git clone https://github.com/preiter93/wireman.git | ||
``` | ||
|
||
2. Build in release mode: | ||
|
||
```bash | ||
cd wireman | ||
cargo build --release | ||
``` | ||
|
||
3. Copy the binary to your PATH, e.g.: | ||
|
||
```bash | ||
cp target/release/wireman /usr/local/bin | ||
``` | ||
|
||
Alternatively, you can create an alias to the binary in your `.bashrc` or `.zshrc` file: | ||
|
||
```bash | ||
echo "alias wireman='CURRENT_DIRECTORY/target/release/wireman'" >> ~/.zshrc | ||
``` | ||
|
||
## Configuration | ||
|
||
1. Set the `WIREMAN_CONFIG_DIR` environment variable to specify the directory where your configuration file will be located: | ||
|
||
```bash | ||
export WIREMAN_CONFIG_DIR=~/.config/wireman | ||
``` | ||
|
||
2. Create the directory specified in `WIREMAN_CONFIG_DIR`: | ||
|
||
```bash | ||
mkdir -p ~/.config/wireman | ||
``` | ||
|
||
3. Create a `wireman.toml` file in the specified directory. Here's an example configuration: | ||
```toml | ||
includes = [ | ||
"$HOME/your-project" | ||
] | ||
files = [ | ||
"a-proto-file-in-your-project.proto" | ||
] | ||
[server] | ||
default_address = "http://localhost:50051" | ||
[history] | ||
directory = "$WIREMAN_CONFIG_DIR/history" # Optional. Defaults to $WIREMAN_CONFIG_DIR/history. | ||
autosave = true # Optional. Autosaves history on request. Defaults to true. | ||
disabled = false # Optional. History is enabled by default. | ||
[logging] | ||
directory = "$WIREMAN_CONFIG_DIR" # Optional. Defaults to $WIREMAN_CONFIG_DIR. | ||
level = "Debug" # Optional. Defaults to Debug. | ||
# [ui] | ||
# skin = "$WIREMAN_CONFIG_DIR/skins/dracula.toml" # Optional. Set a UI theme. | ||
``` | ||
Replace with the appropriate values for your project. | ||
4. Optionally, you can now verify the setup configuration | ||
```bash | ||
wireman check | ||
``` | ||
## Usage | ||
1. After adding the protos in the config, start `wireman`. | ||
2. Basic key mappings are displayed in the footer of each page. For extended help, press `?` and close with `?` or `Esc`. If you want to close the app entirely, type `Ctrl+c`. | ||
3. The first page of Wireman will list your grpc services and their methods. You can navigate with `up`/`down` or `j`/`k`, select with `Enter` or unselect with `Esc`, then click `Tab`. | ||
4. The second page is the message screen. Edit your request message, you can format it with `Ctrl+f`. Then click tab. The navigation of the editor is vim-inspired: use `h`, `j`, `k`, `l` for motion, go into insert mode with `i`, and escape insert mode with `Esc`. For more details, refer to [edtui](https://github.com/preiter93/edtui). | ||
5. The third page is the config screen where you can edit the address or metadata. Wireman allows for using bash scripts to get your tokens. Place the name of your script in the bearer token field, which must be in your PATH, between `$()`. For example, if you have a bash script named `getToken.sh` that prints the Bearer token `ey...`, you would use `$(getToken.sh)` (the script output should not include the word 'Bearer', as it is automatically added). Additional headers can be added with `Ctrl+a` and deleted with `Ctrl+d`. Go to the request page with Shift+Tab or click tab twice. | ||
6. Now you can make the request by clicking Enter. You can save it with `Ctrl+s`. Saved requests are stored in spots 1 to 5. Switch to a spot by clicking the respective number. You can restore the default request with `Ctrl+d`, which deletes the history. You can also cancel a request with Esc. To copy the response: Navigate to the response by clicking down, enter visual mode by pressing `v`, select everything and copy the selected text by pressing `y`. Or follow step 6. | ||
7. If you want to get the current request as a gRPCurl command, click `Ctrl+y` on the request tab, and it's copied to your clipboard. | ||
|
||
## Troubleshooting | ||
|
||
Wireman logs important information and errors to assist in troubleshooting. By default, logs are stored in `$WIREMAN_CONFIG_DIR/wireman.log`.Make sure to check this log file if you encounter any unexpected behavior or errors while using the application. | ||
|
||
If you are unable to resolve the issue on your own or need further assistance, please don't hesitate to [open an issue](https://github.com/preiter93/wireman/issues). | ||
## Custom Skins | ||
Wireman allows users to customize the appearance of the UI by adding custom skins. To do this, simply specify the desired skin file in the `wireman.toml` file config: | ||
```toml | ||
[ui] | ||
skin = "path_to_file/custom_skin.toml" | ||
``` | ||
For a collection of pre-made themes, check out the [Wireman themes repository](https://github.com/preiter93/wireman/tree/main/wireman-theme/resources/skins). | ||
## Demo | ||
![](example/tape/demo.gif?v=2) | ||
## Roadmap | ||
- [x] Unary gRPC | ||
- [x] Set host address | ||
- [x] Set authentication headers | ||
- [x] Request History | ||
- [x] Defaults of repeated/nested fields | ||
- [x] Yank/Paste from clipboard | ||
- [x] Yank request as grpcurl command | ||
- [x] Vim like editor feeling | ||
- [x] Show loading indicator | ||
- [x] Metadata headers | ||
- [x] Provide installation help | ||
- [x] Custom themes | ||
Planned | ||
- [ ] Edit config file in app | ||
Maybe | ||
- [ ] Streaming gRPC |