[WASM] Run WebAssembly in Node.js using the node-loader

WebAssembly is great for targeting performance bottlenecks in the browser. Now with node-loader, we can do the same on the server through Node.js

While Node offers also bindings to native extensions for C/C++ via node-gyp, there was no straight forward way to write Rust extensions. In addition did the node-gyp API change often and developers had to be careful to make their C/C++ code work with various operating systems.

Compiling Rust to WebAssembly solves both of these issues. The API is stable and once compiled to WebAssembly it will run on every operating system supported by Node.

Since Node doesn't support loading .wasm files a loader is needed. The loader flag though is only supported when using the --experimental-modules flag in Node 10 or higher.

 

Install:

npm i --save @wasm-tool/node

Run:

cargo new crate --name=utils --lib

Cargo.toml:

复制代码
[package]
name = "utils"
version = "0.1.0"
authors = ["zhentian-wan <answer881215@gmail.com>"]
edition = "2018"

[lib]
crate-type = ["cdylib"]

[dependencies]
复制代码

Build:

cd crate
cargo build --target wasm32-unknown-unknown --release

Create js file:

index.mjs

import { add_one } from "./crate/target/wasm32-unknown-unknown/release/output.wasm"

console.log(add_one(1));
console.log(add_one(41));

 

Run:

node --experimental-modules --loader @wasm-tool/node index.mjs
posted @   Zhentiw  阅读(478)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2016-11-14 [AngularJS NG-redux] Handle Asynchronous Operations with Middleware
2016-11-14 [AngualrJS NG-redux] Map State and Dispatchers to Redux
2016-11-14 [Scss Flex] Reuse Flexbox Styles With A Sass Mixin
2015-11-14 [AngularJS] Use ng-model-options to limit $digest
2015-11-14 [Flux] Component / Views
2015-11-14 [Flux] Stores
2014-11-14 [RSpec] LEVEL 2 CONFIGURATION & MATCHERS
点击右上角即可分享
微信分享提示