I have a project need using websocket (or named pipe) in browser to communicate with native program. (Is it feasible by Webassembly?)
I have wrote a c++ websocket with Boost Library and would like to compile it to wasm.
But I have no idea how to use Boost Lib(not header only) with Emscripten.
I try to bulid Boost Lib by this: Using Boost with Emscripten
However, how should I link the lib when compiling project with Emscripten?
Thanks!