Subscriptions:
67 |68 | 69 |
Messages:
72 | 73 |78 | 79 |
├── debug.bowerrc ├── mqemitter.html ├── mqttjs.html ├── .jscsrc ├── .npmrc ├── CHANGELOG.md ├── mqtt-elements.html ├── .jshintrc ├── .gitignore ├── demo ├── index.html ├── elements │ ├── demo.css │ └── demo-element.html └── injecting-mqtt-connection.html ├── index.html ├── test ├── index.html ├── mqtt-connection-clientId.html ├── mqtt-subscription-spec.html ├── mqtt-connection-read-only.html ├── mqtt-connection-change-properties.html ├── mqtt-connection-private-methods.html ├── mqtt-publish-test.html ├── mqtt-connection-and-subscription.html ├── mqtt-connection-max-listeners.html ├── mqtt-connection-events.html ├── mqtt-publish-spec.html ├── mqtt-elements-full-stack.html └── mqtt-connection-spec.html ├── package.json ├── LICENSE ├── bower.json ├── mqtt-publish-regestration-behaviour.html ├── mqtt-subscription-regestration-behaviour.html ├── Gruntfile.js ├── mqtt-publish.html ├── README.md ├── dist └── setImmediate.js ├── mqtt-subscription.html └── mqtt-connection.html /debug.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": ".." 3 | } -------------------------------------------------------------------------------- /mqemitter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mqttjs.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "google", 3 | "disallowSpacesInAnonymousFunctionExpression": null, 4 | "excludeFiles": ["node_modules/**"] 5 | } -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | chromedriver_cdnurl=http://localhost:9001/node_modules/web-component-tester/node_modules/wct-local/node_modules/selenium-standalone/.selenium/chromedriver -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 0.0.2-beta (09/29/2015) 2 | 3 | 0.0.1-beta (09/02/2015) 4 | Implemented enhancements: 5 | Fixed bugs: 6 | Closed issues: 7 | Merged pull requests: -------------------------------------------------------------------------------- /mqtt-elements.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "browser": true, 4 | "bitwise": true, 5 | "camelcase": true, 6 | "curly": true, 7 | "eqeqeq": true, 8 | "immed": true, 9 | "indent": 2, 10 | "latedef": true, 11 | "noarg": true, 12 | "quotmark": "single", 13 | "undef": true, 14 | "unused": true, 15 | "newcap": false, 16 | "globals": { 17 | "wrap": true, 18 | "unwrap": true, 19 | "Polymer": true, 20 | "Platform": true, 21 | "page": true, 22 | "app": true 23 | } 24 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # node-waf configuration 20 | .lock-wscript 21 | 22 | # Compiled binary addons (http://nodejs.org/api/addons.html) 23 | build/Release 24 | 25 | # Dependency directory 26 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 27 | node_modules 28 | .idea 29 | bower_components 30 | selenium-standalone/ 31 | chromedriver/ 32 | 33 | #bower 34 | .bowerrc 35 | tmp 36 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 || Messages | 131 |||
|---|---|---|
| Topic | 134 |QoS | 135 |Payload | 136 |
| {{message.topic}} | 142 |{{message.message.qos}} | 143 |{{message.parsedPayload}} | 144 |