Deployment

When run from the IDE, the Debugger takes care putting all the pieces for your WebAssembly executable into place. For actual deployment to your own servers and as part of your larger web or Node.js project, some additional thought is needed.

Note that current browsers only execute WebAssembly code in files loaded via HTTP(S) from a remote server. You cannot use local files loaded via a file:/// URL to run WebAssembly. This is a restriction put in place by the browsers, and affects all WebAssembly, not just Elements.

Read more about deployment of:

See Also