▲ | RandomRandy 3 days ago | ||||||||||||||||
One advantage over using fetch is that the WebAssembly approach seems to bypass CORS > If you inspect the devtools network tab of your browser, you see that everything happens over a single WebSocket to wss://ws.r-universe.dev. The browser is not making the HTTP requests, in fact this would not even be possible because we download the files from a host that does not enable CORS. | |||||||||||||||||
▲ | roywiggins 3 days ago | parent | next [-] | ||||||||||||||||
You don't need websockets or wasm for that of course: https://github.com/Shivam010/bypass-cors As long as the browser is talking to a server that's setting the correct CORS headers, that server can of course forward those requests to whatever third party server it wants. | |||||||||||||||||
| |||||||||||||||||
▲ | aaroninsf 3 days ago | parent | prev [-] | ||||||||||||||||
That's... interesting! |