|
|
|
|
|
by emadda
866 days ago
|
|
I think it’s a few things: - CPU features and system calls. Native code can leverage specific CPU features to gain performance. It has access to files and the network via OS system calls. Code compiled to WASM runs inside the WASM sandbox. It makes code slower. Getting data to/from the WASM code is harder. - The WASM engine is right next to a “good enough” alternative (JS). |
|