-
Notifications
You must be signed in to change notification settings - Fork 5
Command Line Tools
Thomas Amberg edited this page Jul 20, 2020
·
2 revisions
- 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'