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 year 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 (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-28T20:42:19.000Z (about 1 year ago)
- Last Synced: 2025-05-15T06:06:16.037Z (about 1 year ago)
- Topics: cli, hacktoberfest, mqtt, mqtt-cli, mqtt-client, mqtt-explorer, mqtt-topic, terminal-based
- Language: Rust
- Homepage:
- Size: 1.18 MB
- Stars: 482
- Watchers: 11
- Forks: 25
- Open Issues: 8
-
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

```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"