Skip to content

Whoops! Lost connection to error with npm #658

Open
@iutx

Description

@iutx

Desc

I use

"sockjs-client": "^1.5.1",
"stompjs": "^2.3.3",

to connect websocket

const socket = new SockJS(url);
stompClient = Stomp.over(socket);

stompClient.connect({}, (frame) => {
  console.log('Connected: ' + frame);

  stompClient.subscribe(`/topic/${databaseName}/public`, (messageOutput) => {
    const message = JSON.parse(messageOutput.body);
    console.log(message);
    showMessage(message.sender + ':' + message.content);
  });
});

that throw Whoops! Lost connection to error.

But i import same version "sockjs-client": "^1.5.1" with mini.js

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sockjs.min.js"></script>
const socket = new window.SockJS(url);

all things ok.

It's very confusing to me.
What is the direction of troubleshooting, thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions