Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edjopato/mqttui
Subscribe to a MQTT Topic or publish something quickly from the terminal
https://github.com/edjopato/mqttui
cli hacktoberfest mqtt mqtt-cli mqtt-client mqtt-explorer mqtt-topic terminal-based
Last synced: about 1 month ago
JSON representation
Subscribe to a MQTT Topic or publish something quickly from the terminal
- Host: GitHub
- URL: https://github.com/edjopato/mqttui
- Owner: EdJoPaTo
- License: gpl-3.0
- Created: 2020-10-12T15:12:43.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T22:08:01.000Z (6 months ago)
- Last Synced: 2024-05-22T22:46:26.285Z (6 months ago)
- Topics: cli, hacktoberfest, mqtt, mqtt-cli, mqtt-client, mqtt-explorer, mqtt-topic, terminal-based
- Language: Rust
- Homepage:
- Size: 1.18 MB
- Stars: 333
- Watchers: 6
- Forks: 20
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# MQTT TUI
Subscribe to a MQTT Topic or publish something quickly from the terminal
## Features
### Terminal UI
![Screenshot of the interactive terminal UI](media/tui.png)
```bash
# Subscribe to everything (#)
mqttui# Subscribe to topic
mqttui "topic"# Subscribe to topic with a specific host (default is mqtt://localhost)
mqttui --broker "mqtt://test.mosquitto.org" "hello/world"# More arguments and details
mqttui --help
```### Publish
```bash
mqttui publish "hello" "world"mqttui publish --retain "foo/bar" "Banana?"
# Use stdin to publish file contents
mqttui publish "foo/bar"