stomp-js / stompjs

Javascript and Typescript Stomp client for Web browsers and node.js apps
Apache License 2.0
757 stars 81 forks source link

Cannot find module '@stomp/stompjs #562

Closed Evan1115 closed 4 months ago

Evan1115 commented 1 year ago

Hi, recently when i was running the jest test for my angular project, I keep getting 'Cannot find module '@stomp/stompjs' error. Does anyone know how to solve it? image

kum-deepak commented 1 year ago

The latest 7.x releases only support this library to be used as modules. This may cause issues if a toolchain tries to use it as a commonjs module. While the latest node uses modules by default, quite a few popular toolchains do not.

A temporary solution can be to switch to a lower version of this library or to use transpilation.

You might also try the solution suggested at https://github.com/stomp-js/stompjs/pull/538