stream-js
stream-js copied to clipboard
Remix.run integration
I can't get this library to integrate with the remix.run
React framework.
The first error I got was
ReferenceError: Can't find variable: global # from custom-event/index.js
I patched that with
if (global === undefined) {
var global = globalThis // window;
}
But another error
Error: Dynamic require of "http" is not supported
Looks like all these have to do with faye
.
cc @arnautov-anton @MartinCupela
Hey @casoetan,
thank you for bringing this up. Could you please share your remix example, in order we can replicate your setup?
Thank you