https://github.com/jcoreio/mqtt-connection-checker
Tests whether an MQTT server can do an SSL handshake and accept a username and password
https://github.com/jcoreio/mqtt-connection-checker
Last synced: about 1 year ago
JSON representation
Tests whether an MQTT server can do an SSL handshake and accept a username and password
- Host: GitHub
- URL: https://github.com/jcoreio/mqtt-connection-checker
- Owner: jcoreio
- Created: 2019-08-26T22:48:35.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-06T15:21:29.000Z (about 3 years ago)
- Last Synced: 2025-02-01T01:41:50.189Z (over 1 year ago)
- Language: JavaScript
- Size: 40 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mqtt-connection-checker
Tests whether an MQTT server can do an SSL handshake and accept a username and password
## Usage on Windows with Zip File
- Download and unzip [the latest zip bundle](https://github.com/jcoreio/mqtt-connection-checker/releases/download/v1.0.0/mqtt-connection-checker-v1.0.0.zip).
- Edit index.js and replace url, username, and password with values for your server.
- Open a command prompt and navigate to the unzipped folder
- Run `node index.js`
## Usage with Git and NPM
```sh
git clone https://github.com/jcoreio/mqtt-connection-checker.git
cd mqtt-connection-checker
npm install
URL=mqtts://my-server.mydomain.com USERNAME=myUsername PASSWORD=myPassword node index.js
```