Jason Diamond

Results 18 comments of Jason Diamond

I used it on macOS much more than Windows so it's supposed to work. Check the README for the notes marked "SUPER IMPORTANT" to make sure you took care of...

That mosquitto_sub option only prints the messages that have the retained flag set. It could still be receiving non-retained messages, but it is choosing not to print them. In MQTT.js,...

When running in a browser, the browser creates the TLS connections and you cannot override the CAs so you can only use what the browser trusts. When running in Node.js,...

What is `CA_FILE`? It can't be a path to file--you need to load it yourself and pass in the file's content as a `Buffer` or string. Try running with env...

I think the certificate in mosquitto.conf and the CA file you use with MQTT.js would only be the same if the certificate was self-signed. Your error message makes me think...

Was looking for this, too. Here's a pretty good description of what they are and the `ssh-keygen` commands used to create them: https://blog.habets.se/2011/07/OpenSSH-certificates.html

Yeah, I'd be happy with controls or even just a variable that I can set in the JavaScript console. =) I tried making some changes in the JavaScript embedded in...

I don't see these options in the docs: https://doc.deno.land/builtin/stable#Deno.ConnectTlsOptions Does it require a newer version of Deno than is currently released?

Hi, sorry for not responding earlier. I don't use this project at work so it's hard to find time to spend on it. I upgraded to the latest version of...

The Deno client supports CAs. The equivalent of `--cafile` in Deno is an option called `certFile` (see [Deno.connectTls](https://doc.deno.land/builtin/stable#Deno.connectTls)) if you're constructing the Deno client in code. I need to work...