how can i make spring websocket + node.js client
问题 how can i create a websocket stomp client (WebSocketStompClient) in node.js like i do in java with this lines.. WebSocketStompClient stompClient = new WebSocketStompClient(new SockJsClient(createTransportClient())); stompClient.setMessageConverter(new MappingJackson2MessageConverter()); StompSession stompSession = stompClient.connect("ws://localhost:8081/stomp", new StompSessionHandlerAdapter() { }).get(10, SECONDS); i´ve tried several websocket projects in node.js, but none of them work 回答1: