如何在Node.js中使用WebAssembly

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

WebAssembly的一个优点是编译生成的wasm文件,既可以用于Web客户端,也可以用于运行在任何操作系统的Node.js服务端。

编译

创建一个简单的test.c:

#include 
#include 
#include 

EMSCRIPTEN_KEEPALIVE
int add(int a, int b) {
  return a + b;
}

使用Emscripten编译生成test.js和test.wasm文件

emcc test.c -O2 -s WASM=1 -Wall -s MODULARIZE=1 -o test.js

Node.js应用

创建index.js:

const Module = require('./test.js');
const wasm = Module({wasmBinaryFile: 'test.wasm'});
wasm.onRuntimeInitialized = function() {
    console.log(wasm._add(40, 40));
};

通过onRuntimeInitialized事件可以知道wasm文件已经被加载完了。接下来就可以调用C的接口。

Web应用

在HTML页面中导入test.js


                    
                    

你可能感兴趣的:(如何在Node.js中使用WebAssembly)