StompBrokerJS icon indicating copy to clipboard operation
StompBrokerJS copied to clipboard

NodeJS StompBroker

Results 11 StompBrokerJS issues
Sort by recently updated
recently updated
newest added

I can't get en event to fire when a client subscribe a topic but only when on that topic a message is received. Like if on('subscribe') acts more like on...

Server messages sent by a StompBrokerJS server don't have the `destination:` header described in the [STOMP protocol for server messages](https://stomp.github.io/stomp-specification-1.2.html#MESSAGE). This line https://github.com/4ib3r/StompBrokerJS/blob/04ca0d3587c75f8798a55634ec582c065bdc80ad/stompServer.js#L356 sets the subscription header with the destination...

I am having an issue setting up a simple connection from a browser to the node example given. Server code: ``` var http = require("http"); var StompServer = require('stomp-broker-js'); var...

# Description StompServer has mandatory argument of HttpServer. However if multiple websocket connections are needed at one http server, the websocket server needs to be setup with `noServer: true` as...

The following code will lose the 10 characters "0123456789": ` var topic ='xxx'; var data = {a:5}; stompServer.send( topic, {}, JSON.stringify({ topic, data, }) + '0123456789', ); `

The node broker run in nodejs Debugger listening on ws://127.0.0.1:9229/8e90f57c-84bd-49ce-8b41-f9e626d23132 For help, see: https://nodejs.org/en/docs/inspector Connect id207227774120221540000 CONNECT id207227774120221540000 { client: 10000, server: 10000 } { 'accept-version': '1.0', 'heart-beat': '10000,10000' }...

Does anyone know how to use this plugin in nestjs

Hi i am trying to validate a client using headers in the 'connected' event. Could you please let me know to avoid the connection or stop cliebt connecting if validation...