{"_id":"webstomp-client","_rev":"22-76aafc63ec29f5f4c5af199d44ebf204","name":"webstomp-client","time":{"modified":"2022-06-29T00:31:49.424Z","created":"2016-04-01T22:12:38.588Z","0.1.0":"2016-04-01T22:12:38.588Z","1.0.0":"2016-04-01T22:29:26.008Z","1.0.1":"2016-04-06T18:11:15.270Z","1.0.2":"2016-04-09T09:41:03.634Z","1.0.3":"2016-07-31T14:35:28.880Z","1.0.5":"2017-02-05T13:26:44.461Z","1.0.6":"2017-02-15T19:16:02.824Z","1.0.7":"2017-09-07T11:06:00.717Z","1.0.8":"2017-09-18T07:29:32.105Z","1.1.0":"2017-10-13T14:34:51.343Z","1.2.0":"2017-10-13T14:35:02.132Z","1.2.1":"2018-07-03T12:22:17.805Z","1.2.2":"2018-07-03T12:22:33.446Z","1.2.3":"2018-07-13T13:36:20.737Z","1.2.4":"2018-07-13T14:50:26.204Z","1.2.5":"2018-10-10T07:55:46.089Z","1.2.6":"2018-11-05T16:52:30.734Z"},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"dist-tags":{"latest":"1.2.6"},"description":"Stomp client over websocket for browsers and nodejs","readme":"# webstomp-client\n\nThis library provides a [stomp](https://stomp.github.io/) client for Web browsers and nodejs through Web Sockets.\n\n## Project Status\n\nThis is a fork of the original [stomp-websocket](https://github.com/jmesnil/stomp-websocket) re-written in ES6 and incorporate pending pull requests. All credits goes to the original authors: Jeff Mesnil & Jeff Lindsay.\n\n## Browsers support\n\nOnly ES5 compatible modern browsers are supported. If you need a websocket polyfill you can use [sockjs](http://sockjs.org)\n\n## nodejs support\n\nAs nodejs does not have a WebSocket object like browsers have, you must choose a websocket client and use [webstomp.over](https://github.com/JSteunou/webstomp-client#overws-options) instead of `webstomp.client`. Choosing a good client is maybe the most difficult part:\n* [websocket](https://www.npmjs.com/package/websocket)\n* [ws](https://www.npmjs.com/package/ws)\n* [sockjs](https://www.npmjs.com/package/sockjs-client) If your server part is also SockJS\n* ... add yours\n\n\n## Example\n\n`npm run example` will open examples in browser and try to connect to [RabbitMQ Web-Stomp](https://www.rabbitmq.com/web-stomp.html) default Web Sockets url.\n`node run example/broadcast-node.js` will run a dead simple nodejs example.\n\n## Use\n\n`npm install webstomp-client`\n\n### Web browser old fashion style\n\n```html\n<script type=\"text/javascript\" src=\"node_modules/webstomp-client/dist/webstomp.min.js\"></script>\n```\n\n`webstomp` will be a global variable.\n\n### CommonJS\n\n```js\nvar webstomp = require('webstomp-client');\n```\n\n### ES6 modules\n\n```\nimport webstomp from 'webstomp-client';\n```\n\nBy default it will load `dist/webstomp.js`, but the npm package.json es6 entry point to the es6 src file if you prefer loading this version.\n\n## API\n\nJeff Mesnil stomp-websocket [documentation](http://jmesnil.net/stomp-websocket/doc/) is still a must read even if the API [evolved](CHANGELOG.md) a little\n\n### webstomp\n\n#### client(url, [options])\n\nUses global `WebSocket` object for you to return a webstomp `Client` object.\n\n##### url<String>\n\nWeb Sockets endpoint url\n\n##### options<Object>\n\n* protocols: default to `['v10.stomp', 'v11.stomp', 'v12.stomp']`\n* binary: default to `false`. See [binary](#binary) section.\n* heartbeat: default to `{incoming: 10000, outgoing: 10000}`. You can provide `false` to cut it (recommended when the server is a SockJS server) or a definition object.\n* debug: default to `true`. Will log frame using `console.log`\n\n#### over(ws, [options])\n\nTakes a `WebSocket` alike object **instance** to return a webstomp `Client` object. Allows you to use another `WebSocket` object than the default one. 2 cases for this:\n* you do not want `webstomp.client` to create a default instance for you.\n* you are in an old browser or nodejs and do not have a global `WebSocket` object that `webstomp.client` can use.\n\n##### ws<WebSocket>\n\n`WebSocket` object instance\n\n##### options<Object>\n\n* binary: default to `false`. See [binary](#binary) section.\n* heartbeat: default to `{incoming: 10000, outgoing: 10000}`. You can provide `false` to cut it (recommended when the server is a SockJS server) or a definition object.\n* debug: default to `true`. Will log frame using `console.log`\n\n### VERSIONS\n\n#### supportedVersions()\n\nList all STOMP specifications supported.\n\n#### supportedProtocols()\n\nList all websocket STOMP protocols supported. Useful when creating your own `WebSocket` instance, although optional, protocols is often the second parameter.\n\n### Client\n\nA client instance can and should be created through `webstomp.client` or `webstomp.over`\n\n#### connect\n\n* `connect(headers, connectCallback)`\n* `connect(headers, connectCallback, errorCallback)`\n* `connect(login, passcode, connectCallback)`\n* `connect(login, passcode, connectCallback, errorCallback)`\n* `connect(login, passcode, connectCallback, errorCallback, host)`\n\n#### disconnect(disconnectCallback, headers={})\n\n#### send(destination, body='', headers={})\n\n#### subscribe(destination, callback, headers={})\n\n#### unsubscribe(id, header={})\n\nIt is preferable to unsubscribe from a subscription by calling `unsubscribe()` directly on the object returned by `client.subscribe()`\n\n```js\nvar subscription = client.subscribe(destination, onmessage);\n...\nsubscription.unsubscribe(headers);\n```\n\n`headers` are optionals\n\n#### onreceive(frame)\n\nIf defined on the client instance this function will be called whenever a message is received and in the absence of an explicit `subscribe()`. Some brokers (at least RabbitMQ) will setup an internal routing topology for RPC patterns when a message is sent with certain headers. \n\nIn RabbitMQ it's called [Direct Reply-To](https://www.rabbitmq.com/direct-reply-to.html)\n\n*On the client*\n```\nlet onreceive(frame)=>{\n        console.log('Message received',frame)\n}\n\nclient.onreceive=onreceive\n\nlet headers = {\n        'reply-to'  :'/temp-queue/webstomp',\n}\n\nclient.send('/topic/public.echo.hi.mom','a message')\n\n```\n\n*On the server (using [Amqplib](http://www.squaremobius.net/amqp.node/channel_api.html#channel_publish) for example)*\n\n```\nch.publish('',raw_message.properties.replyTo,Buffer.from('a reply'))\n\n```\n\n\n#### begin([transaction])\n\nIf no transaction ID is passed, one will be created automatically\n\n#### commit(transaction)\n\nIt is preferable to commit a transaction by calling `commit()` directly on the object returned by `client.begin()`:\n\n```js\nvar tx = client.begin(txid);\n...\ntx.commit();\n```\n\n#### abort(transaction)\n\nIt is preferable to abort a transaction by calling `abort()` directly on the object returned by `client.begin()`:\n\n```js\nvar tx = client.begin(txid);\n...\ntx.abort();\n```\n\n#### ack(messageID, subscription, headers={})\n\nIt is preferable to acknowledge a message by calling `ack()` directly on the message handled by a subscription callback:\n\n```js\nclient.subscribe(destination, (message) => {\n        // process the message\n        // acknowledge it\n        message.ack();\n    }, {'ack': 'client'}\n);\n```\n\n#### nack(messageID, subscription, headers={})\n\nIt is preferable to nack a message by calling `nack()` directly on the message handled by a subscription callback:\n\n```js\nclient.subscribe(destination, (message) => {\n        // process the message\n        // acknowledge it\n        message.nack();\n    }, {'ack': 'client'}\n);\n```\n\n#### debug\n\nWill use `console.log` by default. Override it to update its behavior.\n\n\n## Binary\n\nIt is possible to use binary frame instead of string frame over Web Sockets.\n\n* client side: set the binary option to true.\n* server side: use a compatible websocket server, like with [RabbitMQ Web-Stomp](https://www.rabbitmq.com/web-stomp.html) since 3.6\n\n## Heartbeat\n\nNot all server are compatible, you may have to deactivate this feature depending the server you are using. For example RabbitMQ Web-Stomp is compatible only since 3.6 with native Web Sockets server.\n\n## Authors\n\n* [Jérôme Steunou](https://github.com/JSteunou)\n* [Jeff Mesnil](http://jmesnil.net/)\n* [Jeff Lindsay](http://github.com/progrium)\n","versions":{"1.0.0":{"name":"webstomp-client","version":"1.0.0","description":"Stomp client over websocket for browsers","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt"],"main":"dist/webstomp.js","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.1.2","babel-preset-es2015":"^6.6.0","http-server":"^0.9.0","in-publish":"^2.0.0","jscs":"^2.11.0","jshint":"^2.9.1","opn-cli":"^3.1.0","webpack":"^1.12.14"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"jshint src && jscs src --fix","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags && npm publish","prepublish":"in-publish && npm run build || not-in-publish"},"gitHead":"2345a64b696c860681a123f5c27a67a2381c7d16","_id":"webstomp-client@1.0.0","_shasum":"1fa46133c49a2cf1f7cd41ee1b894ed4075ca26b","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"shasum":"1fa46133c49a2cf1f7cd41ee1b894ed4075ca26b","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.0.0.tgz","integrity":"sha512-Oe+kuChuIisftpemuhwQAVtoEoRdHUs6IwXAkfBJnBbg9qxeqmlzIcTfKG8IfAtjxGnkSzeAsXiiPGYO9g2qKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbFWFo+Pvr4cqpavFXsPK8rZlzW5OIy1PbB+YTDOkUiQIhAITbTOFuID6L3sicPRH7NNNrO0HXkc+/Zm5ej8f/cjmt"}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webstomp-client-1.0.0.tgz_1459549763560_0.2755958039779216"},"directories":{}},"1.0.1":{"name":"webstomp-client","version":"1.0.1","description":"Stomp client over websocket for browsers","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt"],"main":"dist/webstomp.js","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.1.2","babel-preset-es2015":"^6.6.0","http-server":"^0.9.0","in-publish":"^2.0.0","jscs":"^2.11.0","jshint":"^2.9.1","opn-cli":"^3.1.0","webpack":"^1.12.14"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"jshint src && jscs src --fix","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags && npm publish","prepublish":"in-publish && npm run build || not-in-publish"},"gitHead":"f66ea5f4b33552ed68f007b53f14c903d9fd7926","_id":"webstomp-client@1.0.1","_shasum":"fb481bd2eccb04f275d002303595aa6a2426685d","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"shasum":"fb481bd2eccb04f275d002303595aa6a2426685d","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.0.1.tgz","integrity":"sha512-FIAKeVB9sFjhN91CXm6FCQzDdH0xj0iDQBr7/GBW0M4b/7zjILQfOiX2BIRvMm2z6i5SxH7q78LX8sF7WW3vkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/i2oTHrTY9uvE02NtvOQduNj67v32hU54LVgDonmKOAIhANYglXQDV+MSVKFiEc/FRD9upUPSLywUXQ5RDmhZBcxn"}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webstomp-client-1.0.1.tgz_1459966272648_0.9974661602173001"},"directories":{}},"1.0.2":{"name":"webstomp-client","version":"1.0.2","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt"],"main":"dist/webstomp.js","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.1.2","babel-preset-es2015":"^6.6.0","http-server":"^0.9.0","in-publish":"^2.0.0","jscs":"^2.11.0","jshint":"^2.9.1","opn-cli":"^3.1.0","webpack":"^1.12.14","ws":"^1.0.1"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"jshint src && jscs src --fix","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags && npm publish","prepublish":"in-publish && npm run build || not-in-publish"},"gitHead":"2bb449bfd0de20c78acfb8b00a3a3503601d649e","_id":"webstomp-client@1.0.2","_shasum":"e4f29f51a538d99cc78ffee2115afc59e8d34224","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"shasum":"e4f29f51a538d99cc78ffee2115afc59e8d34224","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.0.2.tgz","integrity":"sha512-UfUqCl6ayjchMDgHCypAQZJRlKVOY5x4LjWtNiZdQwZgeKTWVMJ04dj1pqZ0eI3Lr4W2Dgi1otqaHXaG0o58xw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICbk4QJAxL/hqEsW9JPrytNmymvOyNaWLVOEYSd8lAzYAiEA1Mr1s43o7/1O+5hXIBbOsi5teoHG/uxS2H5ZhqdMiqM="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webstomp-client-1.0.2.tgz_1460194862612_0.4658188617322594"},"directories":{}},"1.0.3":{"name":"webstomp-client","version":"1.0.3","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt"],"main":"dist/webstomp.js","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.1.2","babel-preset-es2015":"^6.6.0","eslint":"^2.12.0","http-server":"^0.9.0","in-publish":"^2.0.0","opn-cli":"^3.1.0","webpack":"^1.12.14","ws":"^1.0.1"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","postversion":"git push --follow-tags && npm publish","prepublish":"in-publish && npm run build || not-in-publish"},"gitHead":"d14e8aed9f0209ad23ebfd3b18cae69257cef930","_id":"webstomp-client@1.0.3","_shasum":"821f98527d4b30a31f93df76f8f31fbc0bac30a4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"shasum":"821f98527d4b30a31f93df76f8f31fbc0bac30a4","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.0.3.tgz","integrity":"sha512-HvWhOKxnb9SycTZMr9ru/Gd+T/fnATOaZGv6S5XU1sMHxssMrUimNS5NOCyeZE03JB4NxQr45kKtOUgmqPLAlA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD0TXXVdY1/dIaWJtxBfIYtm2n9NiFy9RicnyUHeWFB6QIhAITMWqdcGk92BITaJrHk7iGtGgQ4/U8F30bgeoDfdwcJ"}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webstomp-client-1.0.3.tgz_1469975725850_0.8727847512345761"},"directories":{}},"1.0.5":{"name":"webstomp-client","version":"1.0.5","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.6.0","eslint":"^3.0.0","http-server":"^0.9.0","in-publish":"^2.0.0","opn-cli":"^3.1.0","webpack":"^2.2.0","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","postversion":"git push --follow-tags && npm publish","prepublish":"in-publish && npm run build || not-in-publish"},"gitHead":"c4ee85a4d8c680d93c5661a91bd6651750fd7436","_id":"webstomp-client@1.0.5","_shasum":"0f5f61036405be0cd71890545baf5ada7a6dcb21","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"shasum":"0f5f61036405be0cd71890545baf5ada7a6dcb21","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.0.5.tgz","integrity":"sha512-tABHBP+1pQN3TYJTj5UgelXTVU4/Xo+jP19mPlYIghxotGjUDKUxVQbuhT9lbu+7ueH1u++N+LSz/86DYYI3NQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFThZR96T7G3mH619DMRSLgXh1g0VCc3JPFShBoYdYnqAiEAhkzSErN3KP54C9twLqv1IYcq6I8tjxuuNfScFnWjP88="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webstomp-client-1.0.5.tgz_1486301203738_0.7627494605258107"},"directories":{}},"1.0.6":{"name":"webstomp-client","version":"1.0.6","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.6.0","eslint":"^3.0.0","http-server":"^0.9.0","in-publish":"^2.0.0","opn-cli":"^3.1.0","webpack":"^2.2.0","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","postversion":"git push --follow-tags && npm publish","prepublish":"in-publish && npm run build || not-in-publish"},"gitHead":"04bba5004ef23166c774e756ca93d81d9d758dd6","_id":"webstomp-client@1.0.6","_shasum":"9fe1627dd48823cda5f4ade9d34672ac33c837e0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"shasum":"9fe1627dd48823cda5f4ade9d34672ac33c837e0","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.0.6.tgz","integrity":"sha512-rRrptRtO2uvsdk3agI3uJoN/2JdH5lsWIFEuruZrj1+SjmVH+3AxW0tUkhF6nRSfYApYkqnzkbUgkpBtZaCJRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8n8fJMDUvRy7WdEc2QgNasIm23+H1b70waFiCNAmkLAIgUt5AOF8Zdy6dxiXmQYypydOeXVfb9q61b2MUDML6X/U="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webstomp-client-1.0.6.tgz_1487186162140_0.2850745441392064"},"directories":{}},"1.0.7":{"name":"webstomp-client","version":"1.0.7","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.6.0","eslint":"^3.0.0","http-server":"^0.9.0","opn-cli":"^3.1.0","webpack":"^2.2.0","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"2945e7570307e73a72b81f76447005cf6ac75ad0","_id":"webstomp-client@1.0.7","_shasum":"330b1c9ffebba391ca0c7786927c7f65a2ee1532","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.3","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"shasum":"330b1c9ffebba391ca0c7786927c7f65a2ee1532","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.0.7.tgz","integrity":"sha512-4FDipk+/BRlLM/votboM7iIf2C6jzGHMy6Rp+GqdnZZb/GHwokLLgNy99bJmJP8M/R0TOGELdxacIgBR12zTTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFUaEm9dOUY24JKLvHDwoY5FkMYx9KIQZZlUwLZxjq6fAiB1ZeJFeG/U6MrpgysWybU2LSVX571Buyn0PQ8WfOWc3A=="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client-1.0.7.tgz_1504782359596_0.2823822235222906"},"directories":{}},"1.0.8":{"name":"webstomp-client","version":"1.0.8","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.6.0","eslint":"^3.0.0","http-server":"^0.9.0","opn-cli":"^3.1.0","webpack":"^2.2.0","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"ef4fff6cd80b65e1081f2bc1ad6469403bb228af","_id":"webstomp-client@1.0.8","_npmVersion":"5.3.0","_nodeVersion":"8.5.0","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-vSpWdT8bsXbwJrlG1U4EGcx7fHpH7KF8iNlV2+yzGQ0q9GER2RKw2u/UxVrviTq5FbCeahN9u3TrrzfwXBZ3IQ==","shasum":"0c8bfb0cbe6339ff6b7fe321a5b5d91ad95fd1bb","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.0.8.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDmGt5Bp2dvVJ2ZKPMDsbPhUvPbMAd+fn+OvO1tk0nDBgIgaIz8hoXAQPQt5R/h5yl9dSLap5+bhPlS46UUlMDVxjU="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client-1.0.8.tgz_1505719770905_0.2137110661715269"},"directories":{}},"1.1.0":{"name":"webstomp-client","version":"1.1.0","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.6.0","eslint":"^3.0.0","http-server":"^0.9.0","opn-cli":"^3.1.0","webpack":"^2.2.0","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"144c1d84788eee7567083333f655db956a170c22","_id":"webstomp-client@1.1.0","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-+BDzWUTRA5tW0ZUsv4QzWF/PMs5/74aH4F2Z9ZvjK3OFNiTw/psKonLQ8ZKnGUs9lKgb4Y2k/o8Bkh+b7MyriA==","shasum":"df7eb66282296fc09eb603e6f9bbab68e2508c22","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFEvr/zapUsIahUqnnzKuK9axgVInhrr5B5FW84IczqhAiEA4P7aq9DIjj5zOfl5xRXuDqt6aIPYUzZFEM7RF2HaDoc="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client-1.1.0.tgz_1507905290326_0.9627045763190836"},"directories":{}},"1.2.0":{"name":"webstomp-client","version":"1.2.0","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.6.0","eslint":"^3.0.0","http-server":"^0.9.0","opn-cli":"^3.1.0","webpack":"^2.2.0","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"cc5702a5da0f4d76e66881a9a0d4c65085089c8f","_id":"webstomp-client@1.2.0","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-samQ+9i8WQJIL5BWtrsN+i3wNeZGsVwWmNFyz2n3oyMHwNrK3UpQ7nin04w9gpDjV/ZPLYIIh3cosGuXCDONSQ==","shasum":"454da66c2ff86c4a876f04218b6d9de8946e596b","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMECZp09OgiH+f0pGhvZHJPMTKV7Kn1T3N+hVbhCg7OgIhAMwsG1RacjUB7H8aSeudMOfEZskT4REGxHTRHxwzOOt3"}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client-1.2.0.tgz_1507905299989_0.42276099836453795"},"directories":{}},"1.2.1":{"name":"webstomp-client","version":"1.2.1","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.6.0","eslint":"^3.0.0","http-server":"^0.9.0","opn-cli":"^3.1.0","webpack":"^2.2.0","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"2299184fa2d1f898faf975f7304018da9ed47f88","_id":"webstomp-client@1.2.1","_npmVersion":"6.1.0","_nodeVersion":"8.11.3","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-vpzUGptp6vlRbOh4rVtMqKX9vMzws6ggAqrQ7yZeIeCovgF3aLE8gviw3y3+zWa+KzS28Vf+PapMsPIHhoa6eg==","shasum":"133629e7ba9b911b751a0fdeb2c761aa75364a8a","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.2.1.tgz","fileCount":11,"unpackedSize":95472,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbO2p5CRA9TVsSAnZWagAANAEP/Rwr1hNdPMIfNhyGTk0S\n8GNSAXa0zKu3MliKzCmc1kask5VUUgZJWX7s0TtZaZB1gqKxHDaUSB87mwlo\ntTieOoEuJ3Rr6/xilmUby3SeIWjSROP0Bt2X6VnN/UcNV6kqVK35EJsAJpjH\nkHePui38s3MntkX2k2EnTzfthe4SKrlDvuD8VkBHEZ9s9RHiQyeWTvMgg94E\nTBz/i+z4Mu/b1u/kqCz/b9Jo7JN7mVVnCqrFS3Rtl2SC6V9lDlg6aamivqdi\nXBuCn+fDsVpMQStGpCbxTeDZx/1Dq6qoudHoMm6F9uY6CDFFkrGQORrmDMCN\nyIO48FZq7MP8GHr0MnS7Wta1TOronkCfMgWNB0PzLTgy/c9JopbWCrIVFHtj\nm/NzvjZUPn/6LO6yI8TNCQqXmRVIYOeUfMS0S82jPyvf3DozBUyXsQRT5Z9s\na907o3kwuUwWDHO4jjyiuPRoZVi12NtrSaF0P9Vh1Et+D6TPWpguohj0uBps\niEO+fDu4YWjdizvWCFpSwYpE7K581DQybMs8rA1YqOvbleocZwinumdISZxN\nsRPK1zDE6RoTpuK2qLtstRCqUT0CmTlw5WAThR0FXWgxnKnvxizT4cWfTEUP\nny8ZObcU1sQQGkMqxAFW8+SCWYY02XHdIy38E4MkwwqXJj20nYyFfN46PLxl\nj5Qz\r\n=s5kt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC+9fUviHp41rr8poFC/v71qOZbomwo1pMWrzZeDv5tQwIhAI2FiKiXl1y16lfPTlto/1Mkb/REthE9jEF/TJS5cNvQ"}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client_1.2.1_1530620537754_0.7161706486388753"},"_hasShrinkwrap":false},"1.2.2":{"name":"webstomp-client","version":"1.2.2","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.6.0","eslint":"^3.0.0","http-server":"^0.9.0","opn-cli":"^3.1.0","webpack":"^2.2.0","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"webpack && webpack -p --config webpack.min.config.js","dev":"webpack --watch","example":"webpack && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"deef583529c94dd29449c622e7ca21b4a6ba9402","_id":"webstomp-client@1.2.2","_npmVersion":"6.1.0","_nodeVersion":"8.11.3","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-7Wb4LgsXTmb29fiHm4sXPSOPRA02+ciDDRLBI7JWOG3/lFlv+9gvcE8uPSJC6r4FRIaLCnQVApGBXuXqckVt9g==","shasum":"0c4ca30f69763e7a877e602518fb82922728f1d4","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.2.2.tgz","fileCount":11,"unpackedSize":96966,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbO2qJCRA9TVsSAnZWagAA/6cP/25pbkGSr0qGXnxAlxPi\napnCry7nfWFDEO4UznnTiC3TayvXKpv2BEvvGwNew5iJFKstsDFPPaOmjVMG\nlHMIho5fM0HUom9gW/CBKnOX/d5jTiI71rkWL0NiD2pJCRqch7wH6xeqr0IC\nfuknLrZkJElYOqgFSAeJSBnEXnXCJ052GGRfeol+2xykDxB+Otwz1/t5SWeE\nv6rEeU3p7PiJHFUTaLPagCA3P0W5+cw4dUkGReHUxYQzq20j1wy2xeg/RI6G\nckEdPrBlEn4szNNZgGSNzgpYU58HQUe0Dvm5jSd+TMXVLYiSeHVaMRt/9vpC\nRNbXkwLc/5mbEqYpeAucXWhIiRnNR0rlrTZcbdjiXeaTLnBE8Lsv5Qk7ylk8\nAumEQx/FHzZb1/Xb5ziQut5CK+9UtQ9HEjQAeUaskIpNjk2grS0XxOqyUN+a\nSllJibzlZlKCTJClM9iYoUyKLwuOwvqjq4PkPyk8bczuDqcAvgDXrxYq3j9F\novz61IWS5OxbOaAXKdixd5UsVy2hTEcCKl9IIsAC2Qf9Y70KSvVBC8BhmYIk\n4OGZRPq7/YGyAPiQlWTTh/DReI2O1VvIB5YJC+pM5QWCpe7UDnEh7Q2Fw/1D\ntFyxbLhMeBkSPY4PnPO1dhsW/j+ZxrHKu65ZmZWZSBZB2ey5XERr6Ik+HHOp\nVx52\r\n=kTqx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDs9HTQk6jMbyaWtNd4m59Li44NUSxSP+MQ/1l6JMp6uAIgWVXT/pOdzfG4gdPGkgfSx2kQ6hMSpaVaMEvdRmybcPM="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client_1.2.2_1530620553310_0.8524467348767455"},"_hasShrinkwrap":false},"1.2.3":{"name":"webstomp-client","version":"1.2.3","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-loader":"^6.2.4","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-external-helpers":"^6.22.0","babel-preset-env":"^1.7.0","eslint":"^3.0.0","http-server":"^0.9.0","opn-cli":"^3.1.0","rollup":"^0.62.0","rollup-plugin-babel":"^3.0.7","uglify-js":"^3.4.4","ws":"^2.0.0"},"scripts":{"test":"echo \"TODO: add tests\"","build":"rollup -c && uglifyjs dist/webstomp.js -o dist/webstomp.min.js","example":"npm run build && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"54c18fffdc76ecdc7bc8989cb72f488b9366e4b6","_id":"webstomp-client@1.2.3","_npmVersion":"6.1.0","_nodeVersion":"8.11.3","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-9XOidJMCI+zFQij9q1YWx+I47f2dKHcx5x//sVS5iMIZ4jleGOKv+J1O21ZHg7O62K2GB4p6yLnme8UhQ36mAQ==","shasum":"ef07c34451391a02855f0b32c82a2926bbed7240","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.2.3.tgz","fileCount":12,"unpackedSize":95875,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSKrUCRA9TVsSAnZWagAAf3sP/0yhzdSiVIwopeZS/mNu\nMt0MpNB4FpmJdN0jDtKXTD1KMopqw+y32nEoYwqHQjDQ8OU1V0BVppW6jUzY\n7YYnymcLXSIWZNGbcglbC8oDhpdI56DNmOieqXS4A4SUrjBKjdVqTuWRSDRy\n0j5drVwipO9YyOBwFSagxkfDVknfDSjHQVU1rOfXPPQEOt1ciyOj77SgoWzq\nr40Z148r29IUIv5YnJ1W7QfveisTcCD8G2cUtUgzbDKEQ9EH7+C7Dy2ynyoS\nyERYvpFgQEQ/9rBT21F8IhLBgt8oDzyOD8QFPhQ0VqzBxWKCA1tkbdS2o+oj\nrzrDqaTTzRuUEKdzV2kg2HpUqN+YH3OcEGoz21D+C4TUv6XV8GGbj2UjocSs\nTGOQ42/SHrIi445IcNvV7LE+L0LFopmgwBC/GArvEipAQzWUOs06fDawyfDJ\n75AEq0hdiJ8eHtnbR9SpuU2HicdrDip8nriAn1AC8lFb1H+/esRpwbY17yEg\nWZU8j/1KxOhnod1Wn3RM06Uwmq6878H/LK8ikf2BYqmtkDCAWPQQKIOLGi9g\ndxv/p2d5Vs5KQIH+3mMh890fKOJxIA4Q/IQvMEMUxdw8POUyvYMar8cgei7p\nGYnylR2yY/maFimGB9twULuFDRtHE/GNTgiL4dYhLI28YH9wbvQdeg0hxcUh\n6Wh1\r\n=Dajw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC9xr95cwY/tSiSDMwPJIa4XtpkMVRsPFzyV6L91UODdAiEA7XTYb8bHx+GvudC6XuKdrzMWE6ZHkfcic9+VbXBjGag="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client_1.2.3_1531488980631_0.43699723656954625"},"_hasShrinkwrap":false},"1.2.4":{"name":"webstomp-client","version":"1.2.4","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"files":["dist","src","*.md","*.txt","index.d.ts"],"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-external-helpers":"^6.22.0","babel-preset-env":"^1.7.0","eslint":"^5.1.0","http-server":"^0.11.1","opn-cli":"^3.1.0","rollup":"^0.62.0","rollup-plugin-babel":"^3.0.7","uglify-js":"^3.4.4","ws":"^5.2.2"},"scripts":{"test":"echo \"TODO: add tests\"","build":"rollup -c && uglifyjs dist/webstomp.js -o dist/webstomp.min.js","example":"npm run build && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"1bdb65c558e5d4657ae1567f561c51d6848f3c24","_id":"webstomp-client@1.2.4","_npmVersion":"6.1.0","_nodeVersion":"8.11.3","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-kRlsL3BrIDUueWHp8MBx86iLaBd3woNOUjAubXmqP/sfd69dVEjShTb1/m3+SPIX89mOHJ8UxN+gXTaC6Ssicg==","shasum":"aeaa0a83a70b0e6de59c3a125d98fc3ff2231d72","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.2.4.tgz","fileCount":12,"unpackedSize":95968,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSLwyCRA9TVsSAnZWagAAkkIP/04jwYiwqRBbUCjzuTQE\nLrSNtAiHtahvaRS7XtzESDn8T++h8g5i3Qsi8hJXUOvRio9ImCi4Vf/LUPzy\nxXeedvVTSc2Zu1ZY00C0FXd6qcETbp73yqmSS11mKNIAg8hiA/XpLuvQmv5t\nX6fydUTdCiF0NY2R0XXZ6loTsn9YgSX48TOCkpVMxGUyNXQR97gD1zv7RxzZ\nw/jON2bkBZLcQOnF6Q0DVeBv5IKm2p7VUw+5QAYedh0ANcOBUo6JVaps5t7C\nRDfYW5cnj53CjInQ5QIeePhPBpLMcvIOoKyQRwq9x+9WLbSI7GDsMJZ3Bxoh\n/uluac3AX4sfr1e7PFEbojlrzwevsnS1u7PlIn3D7AOE92GYlaUC4dpX/y1Q\n9Ox5XQYkHhckzJu8x1GRAN+ahogEyId3adP+5p2WCuAxrQe6tIPyFMAkmOjU\nmjPm0IF6JQMbIRfLg3d/17FpZF25EBsxV2cBPx38tCxZ0I/9CKpiVCWnmf5A\nxzzP6jHGZ6H0YA0ulx66MLdBKAnJC4Uy8td0bvNf7EHHt8GaNgGsirDtMkhE\nNLYfpqSnxEBcWVhTWsp6vM+Bouk792elV42zCoo/OgimOrixTFX5oA+Scl0W\ngsIA+V9iuOcLZoYpTJQyflGiuqSuXcRQkO1RhQfvt4RueHoDjs5EVpGwoT7I\nzKpg\r\n=G1w2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB3Ky+2gmagn3CNDQ95pVnHMTIc7EBEYlP/zIBfZGCUEAiAESV9LimQouLO4uB6evcpxOYUl4kjVtLzzEmKxxcludw=="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client_1.2.4_1531493425929_0.43576602852959523"},"_hasShrinkwrap":false},"1.2.5":{"name":"webstomp-client","version":"1.2.5","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-external-helpers":"^6.22.0","babel-preset-env":"^1.7.0","eslint":"^5.1.0","http-server":"^0.11.1","opn-cli":"^3.1.0","rollup":"^0.62.0","rollup-plugin-babel":"^3.0.7","uglify-js":"^3.4.4","ws":"^5.2.2"},"scripts":{"test":"echo \"TODO: add tests\"","build":"rollup -c && uglifyjs dist/webstomp.js -o dist/webstomp.min.js","example":"npm run build && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"ed91adf1da35f5fec920d753a8c8a2af9f939aaf","_id":"webstomp-client@1.2.5","_npmVersion":"6.4.1","_nodeVersion":"8.11.3","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-9s84St3+Dk3FtkCxiz/N5WPopcLvbr13kd9WuRpHpYIILisOezggtFXNETnWFuAM9HNcfHZT20KDVZsxId8RMg==","shasum":"b3c4bf39d372e90dae8a5fa6be6afc9b260cbf79","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.2.5.tgz","fileCount":12,"unpackedSize":97614,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvbCCCRA9TVsSAnZWagAAsQcP/09KPDke6pE9dne693Mi\nIHVbajAWJo6oVjvyqEC0OcvHSoIEncDUlS08nCjmwC2DgMl2q04m1K4UcaDy\nz1rbc+MfZRSXcB0OF2XXeDFoWyLLa+v2UtOVROks4S4Y8QsL3oy70+J1cwY8\nPLJ9wNHfbX640oVkg1j9jWSKRzhssIaMf6PQ4cC86Yto57dnQkaxaczYfWAH\nzWQfsKQhSJeUOlSSYuCKbOLdByfPgRpCvhAonbaY2M1b9SqKoR0TSNSSPVI8\nGX71j2kumBLp0Rwlmk98K4/bTHQPVaPY7pl5PJQ5srdMjJ3/3/BIaRAaKGMH\nw10JqxxJfJ6GLe60y0Rq4ayXCoW06q5zndfN07T8jpjs5fJIkfRKXh0PDuMr\nNXZYkS6WQrsoceyEjL6AjZFiTCiSQroGyxOh6pwhhvTwD9Ay6Zh5AD2T+JFp\n9NMZgyf+EXSjhoorZ+ZayKaBYkuJwObEX6Uwm7hH/Vf0MjacKi2CueBd6TQL\nNJfmHPYxzMJw2175zr98wvGt6cYJeLn5x1VFVwHbYJ3eGjfZixU/8kD2toCD\nxP1f9hvfH2430wCEOr3FTPbbOj8BVTBjPOSO5p1sJ9vpN3oqOlFBDSB6XGha\nvirDVGR40T5Zd1GJfsNyotQ2y+0HLgshbf4YDL5pgEq2G6rKMTm8A77BVH2w\n9Qi0\r\n=XQsj\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC32BOz0Pw0pSK2us9sqYQ9FoCT4pHcaQe6gwuL0+CNKwIhAN9SeMBHU7qBtgksDYSojSwvTP8QT9ElsVivpvCKt5Bs"}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client_1.2.5_1539158145939_0.1406973702971701"},"_hasShrinkwrap":false},"1.2.6":{"name":"webstomp-client","version":"1.2.6","description":"Stomp client over websocket for browsers and nodejs","license":"Apache-2.0","keywords":["stomp","webstomp","websocket"],"author":{"name":"Jérôme Steunou"},"main":"dist/webstomp.js","types":"index.d.ts","es6":"src/webstomp.js","repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"homepage":"https://github.com/JSteunou/webstomp-client#readme","devDependencies":{"babel-core":"^6.7.4","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-external-helpers":"^6.22.0","babel-preset-env":"^1.7.0","eslint":"^5.1.0","http-server":"^0.11.1","opn-cli":"^3.1.0","rollup":"^0.62.0","rollup-plugin-babel":"^3.0.7","uglify-js":"^3.4.4","ws":"^5.2.2"},"scripts":{"test":"echo \"TODO: add tests\"","build":"rollup -c && uglifyjs dist/webstomp.js -o dist/webstomp.min.js","example":"npm run build && opn http://localhost:8080/example & http-server","lint":"eslint src --fix","lintnofix":"eslint src","preversion":"npm run lintnofix && npm run test","version":"npm run build && git add dist","postversion":"git push --follow-tags && npm publish"},"gitHead":"6378e7ca0ff98e0942fd9eafa1faaeb97b97df3f","_id":"webstomp-client@1.2.6","_npmVersion":"6.4.1","_nodeVersion":"8.11.3","_npmUser":{"name":"jsteunou","email":"jerome.steunou@gmail.com"},"dist":{"integrity":"sha512-9HajO6Ki2ViEGIusLZtjM2lcO2VaQUvtXhLQQ4Cm543RLjfTCEgI3sFaiXts3TvfZgrtY/vI/+qUkm2qWD/NVg==","shasum":"57e8a044bac0a08bfc3d0e54d43760c2aeefadab","tarball":"https://registry.npmjs.org/webstomp-client/-/webstomp-client-1.2.6.tgz","fileCount":12,"unpackedSize":97721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4HVPCRA9TVsSAnZWagAALDEP/iJXHYtCKdcBc45PaSMx\nb7jeHFKijhwMeLCve/ENjvP6DUNTbLJW6MjSGEo3HhQgqLvIEx82Ttq0tNe3\nP6z4sqC8bLMPxGjOorfydR953GvHvwZW+DkgyjKJN+2UFP7VpPCgHa6TRaNe\n0DRKHqyaXOEb26tIpjr/AStnvxb6rHrUeE6iq6v4gdC4qOp09V6nzHFUYBQn\n9dY/9z+vIDd136AsVAiVKbh2OUxW4iThpDm27ym3sLb9WaTNZkZ2j3t5Xdw+\nt7d86o2hrLK895rXgr7gNaDLpZRE8QDhlcrmFGLuehy2nf81/rcjogkLk+7p\nbW1xduGN9mV+4wiFURPNYHKsvnU70dROoc/YQd8Uet0rCGGDFkpEVQX7NIRs\npqYAbuUiUL5985R3IEz9Lha72wL1t0/b2kbiPoJpm7ZXdYATYO/pBM8MH7v1\naNnyE8AIWn30sAqnYcfoSs9x7BNAGO3IWQmmLUx8rFIhA6uQOuBYs+lBSCU+\n0PZR6VbwHAsXvbTQVlaMXgVy8Fc7nFb8UbjfVMsKb/cPorxO+MuodGzVPQ5t\n1/L3Nm6OaeZnz/OXhbxguaaQLLDHJEmC3QGEih40kh5cz7EX//pLExYY+SjQ\nJ5lJGRynpy2RSrDWFanNeEDVPTywpvbKplZHXsZsTZuGToeVJDWZUGTrAvHU\nCKa4\r\n=ZUkr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCuI9KziBPcwfEQTkq1H2IC64Q0iXHQxeZKAncDVDn0hAIgfXPEMOQV8zGP/u8g6gKWqaIVgeXW5nqvZ5AqrOYF80c="}]},"maintainers":[{"name":"jsteunou","email":"jerome.steunou@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webstomp-client_1.2.6_1541436750565_0.5040192382321802"},"_hasShrinkwrap":false}},"homepage":"https://github.com/JSteunou/webstomp-client#readme","keywords":["stomp","webstomp","websocket"],"repository":{"type":"git","url":"git+https://github.com/JSteunou/webstomp-client.git"},"author":{"name":"Jérôme Steunou"},"bugs":{"url":"https://github.com/JSteunou/webstomp-client/issues"},"license":"Apache-2.0","readmeFilename":"README.md","users":{"ilonghi":true}}