mosca icon indicating copy to clipboard operation
mosca copied to clipboard

MQTT broker as a module

Results 100 mosca issues
Sort by recently updated
recently updated
newest added

This will use GitHub's functionality to show the license tab in the repo

Is there anyway for me to get list of all the clients connected to the broker?

Dear sir. I'm trying to use mqtt over web socket, as described https://github.com/mcollina/mosca/wiki/MQTT-over-Websockets The client is running on Chrome. Using the embedded MOSCA, it worked well. But using the MQTT.js...

Nodejs 10 has the new [worker_threads](https://nodejs.org/docs/latest-v13.x/api/worker_threads.html) API that allows real concurrent programming on javascript. I think this would allow performance optimizations for the broker to handle messages in parallel.

in [example](https://github.com/mcollina/mosca/tree/master/examples/kafka) when pulling ` docker run -d -p 2298:80 --link kafka01:kafka01 --link kafka01:kafka02 --link kafka01:kafka03 fullergalway/kafkamqtt ` the fullergalway/kafkamqtt is deleted or not found on docker hub how to...

Hello, When looking up the retained message in mongo for a topic being subscribed to, $regex is used file [mongo.js](https://github.com/mcollina/mosca/blob/master/lib/persistence/mongo.js) line 270 ```javascript MongoPersistence.prototype.lookupRetained = function(pattern, cb) { var actual...

How to set option in Mosca SSL/TLS Work with nginx ?

According to the documentation the password passed to authenticate is supposed to be a string but it is actually a Buffer. http://www.mosca.io/docs/lib/server.js.html#authenticate I suggest either updating the documentation or casting...

Note that additionally the `ioredis` dependency needs to be upgraded to the latest version supporting the `rediss` protocol for the Redis connection URL.

The `ioredis` package is v1 where recently v4 supports `rediss` (Redis TLS) protocol e.g. to use a managed Redis database on Digital Ocean. Besides updating the `ioredis` dependency, the `lib/persistence/redis.js`...