|
8 | 8 | mqtt.js is a library for the [MQTT](http://mqtt.org/) protocol, written
|
9 | 9 | in JavaScript to be used in node.js.
|
10 | 10 |
|
11 |
| -## Important notes for existing users |
12 |
| - |
13 |
| -* v0.3.0 improves connection stability, performance, the reconnection |
14 |
| - logic and SSL support. See [#118](https://github.com/adamvr/MQTT.js/pull/118) for |
15 |
| - details. A Connection is a Writable stream, so you can run |
16 |
| - MQTT.js over any kind of Stream (doc needed). Both the constructors of |
17 |
| - MqttClient and MqttConnection changed, but not the factory method |
18 |
| - `mqtt.createClient` and `mqtt.createConnection`. |
19 |
| - |
20 |
| -* v0.2.0 has brough some API breaking changes to mqtt.js. |
21 |
| - Please consult the [migration guide](http://github.com/adamvr/MQTT.js/wiki/migration) for information |
22 |
| - or open an issue if you need any help. |
23 |
| - |
24 | 11 | ## Example
|
25 | 12 |
|
26 | 13 | ```
|
@@ -51,6 +38,19 @@ node index.js
|
51 | 38 | // => Hello mqtt
|
52 | 39 | ```
|
53 | 40 |
|
| 41 | +## Important notes for existing users |
| 42 | + |
| 43 | +* v0.3.0 improves connection stability, performance, the reconnection |
| 44 | + logic and SSL support. See [#118](https://github.com/adamvr/MQTT.js/pull/118) for |
| 45 | + details. A Connection is a Writable stream, so you can run |
| 46 | + MQTT.js over any kind of Stream (doc needed). Both the constructors of |
| 47 | + MqttClient and MqttConnection changed, but not the factory method |
| 48 | + `mqtt.createClient` and `mqtt.createConnection`. |
| 49 | + |
| 50 | +* v0.2.0 has brough some API breaking changes to mqtt.js. |
| 51 | + Please consult the [migration guide](http://github.com/adamvr/MQTT.js/wiki/migration) for information |
| 52 | + or open an issue if you need any help. |
| 53 | + |
54 | 54 | ## Installation
|
55 | 55 |
|
56 | 56 | npm install mqtt
|
|
0 commit comments