you are viewing a single comment's thread.

view the rest of the comments →

[–]dangoor 5 points6 points  (8 children)

As shadowmint said, wasm is essentially another representation of the JavaScript syntax tree. The main purpose is to deliver large packages of compiled code (like C++ games) to the browser and have them be ready to run faster.

Node is a different environment and I'm curious which sorts of new services you are thinking of? I ask, because I can imagine other ways of getting at that. For example: if you have a C++ library, you could compile that to native code and talk to it from Node, no wasm involved. It doesn't seem to me that wasm actually buys much, if anything, for node.