Skip to content

This project wraps mqtt.js to run a bundled (browserify) version for the browser within a Web-Worker

License

Notifications You must be signed in to change notification settings

mqttjs/mqtt-worker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

67a3d4b · Jun 15, 2016

History

29 Commits
Jun 2, 2016
Jun 8, 2016
Jun 1, 2016
Jun 1, 2016
Jun 6, 2016
Jun 1, 2016
Jun 2, 2016
Jun 1, 2016
Jun 8, 2016
Jun 15, 2016
Jun 15, 2016
Jun 15, 2016
Jun 6, 2016

Repository files navigation

Travis Build

mqtt-worker

This project wraps mqtt.js to run a bundled (browserify) version for the browser within a Web Worker. Currently this project is still prototypical and needs some work, feel free to help.

Usage

bower install --save mqttjs/mqtt-worker
<script src="bower_components/mqtt-wrapper/dist/MqttWorker.js"></script>

<script>
var MqttWorker = require('MqttWorker');
var mqtt = new MqttWorker("../mqttWorker.js", document.URL, true);
// use the same API on mqtt available from https://github.com/mqttjs/MQTT.js  
var client = mqtt.connect("ws://localhost:3005");

client.setMaxListeners(11);

client.on('connect', function (packet) {
    console.log('MQTT.js is connected', packet);
});

client.subscribe('presence');
client.publish('presence', 'Hello mqtt!');

client.on('message', function (topic, message, packet) {
    // message is Buffer casting to String
    console.log(String.fromCharCode.apply(null, message), packet);
    client.end();
});

client.on('close', function () {
    console.log('close');
});
</script>

Debug / Inspect

In Chrome Web Workers can be debuged at chrome://inspect/#workers.

Build

npm install
grunt 

or

browserify -r ./lib/client.js:MqttWorker > dist/MqttWorker.js
browserify -r mqtt > dist/MqttBundle.js

Contributing

mqtt-worker is an OPEN Open Source Project. This means that:

Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

See the CONTRIBUTING.md file for more details.

Contributors

mqtt-worker is only possible due to the excellent work of the following contributors:

Sandro KockGitHub/sandro-kTwitter/@_syn_k

License

MIT

About

This project wraps mqtt.js to run a bundled (browserify) version for the browser within a Web-Worker

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published