Top "Webassembly" questions

WebAssembly (abbreviated Wasm) is a new portable, size- and load-time-efficient format suitable for compilation to the web.

Compiling Python to WebAssembly

I have read that it is possible to convert Python 2.7 code to Web Assembly, but I cannot find a definitive …

python emscripten webassembly
What languages can be compiled to WebAssembly (Wasm)?

What languages can be compiled to WebAssembly (Wasm)? I believe right now C, C++, and Rust (experimental) can be compiled …

llvm programming-languages webassembly
What is the difference between asm.js and WebAssembly?

I have been reading about asm.js and WebAssembly recently: http://ejohn.org/blog/asmjs-javascript-compile-target/ https://brendaneich.com/2015/06/from-asm-js-to-webassembly/ I …

javascript asm.js webassembly
Blazor performance

I would like to start using Blazor, despite the fact that it is still at the alpha level. As I …

asp.net performance blazor webassembly
TypeError: Failed to execute 'compile' on 'WebAssembly': Incorrect response MIME type. Expected 'application/wasm'

I'm trying to load a .wasm file using the fetch api on Chrome , and serving a html file using express. …

express webassembly
Wasm access DOM

Is there any way to get read/write access to DOM and/or the WebAPIs(i.e. fullscreen API) without …

webassembly webidl
How do I compile a C++ file to WebAssembly?

Suppose I have a simple, self-contained C++ file (math.cpp) like this: int add(int x, int y) { return x + …

c++ webassembly
How can I return a JavaScript string from a WebAssembly function

How can I return a JavaScript string from a WebAssembly function? Can the following module be written in C(++) ? export …

javascript webassembly
How can one generate and save a file client side using Blazor?

I want to have a SPA that's doing all the work client side and even generating some graphs/visuals. I'd …

c# web webassembly blazor
Pass a JavaScript array as argument to a WebAssembly function

I would like to test WebAssembly for doing some complex array calculations. So I've written a simple C++ function adding …

javascript c++ browser emscripten webassembly