Command Line Tools - fhnw-imvs/fhnw-idb GitHub Wiki
- https://curl.haxx.se > Download
- Get
$ curl -v tmb.gr/hello.html
- Post text
$ curl -v --data 't=23' https://postb.in/...
- Post JSON
$ curl -v -H 'Content-Type: application/json' --data '{"t":23}' https://postb.in/...
- Put
$ curl -vX PUT --data 'hello' https://postb.in/...
-
https://github.com/mqttjs/MQTT.js
$ sudo npm install mqtt -g
- Publish
$ mqtt pub -t 'mytopic' -h 'test.mosquitto.org' -m 'Hello, world!'
- Subscribe
$ mqtt sub -t 'mytopic' -h 'test.mosquitto.org'