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: 11 days 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 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-09T22:26:20.000Z (16 days ago)
- Last Synced: 2025-04-09T23:27:24.056Z (16 days ago)
- Topics: cli, hacktoberfest, mqtt, mqtt-cli, mqtt-client, mqtt-explorer, mqtt-topic, terminal-based
- Language: Rust
- Homepage:
- Size: 1.18 MB
- Stars: 471
- Watchers: 10
- Forks: 24
- Open Issues: 7
-
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"