[WASM Rust] Create and Publish a NPM Package Containing Rust Generated WebAssembly using wasm-pack

wasm-pack is a tool that seeks to be a one-stop shop for building and working with Rust generated WebAssembly that you would like to interop with JavaScript. This includes ability to publish modules so that you can share your Rust generated WebAssembly code with others.

In this lesson we create a npm package and export a Rust function that will log to the console in the browser. We publish the module to NPM and afterwards use a rust-webpack-template to install and use the newly published package.

 

Create a new wasm lib:

cargo new my-wasm-lib --lib

 

Update Cargo.toml:

复制代码
[package]
name = "my-wasm-lib"
version = "0.1.0"
authors = []
edition = "2018"

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

[dependencies]
wasm-bindgen = "0.2"
复制代码

 

lib.rs:

复制代码
extern crate wasm_bindgen;

use wasm_bindgen::prelude:;*;

#[wasm_bindgen]
extern {
  #[wasm_bindgen(js_namespace = console)]
  fn log(msg: &str);
}

#[wasm_bindgen]
pub fn greet(name: &str) {
  log(&format!("Hello {}!", name));
}
复制代码

 

Run:

wasm-pack build

This creates a package directory. In previous lessons, I mentioned that it contains a WASM and a Javascript file. What I haven't mentioned yet is that it also creates a package.json based on our Cargo.toml.

 

Publish:

wasm-pack publish

 

Then inside another wasm project:

Install:

npm install --save my-wasm-lib1215  # package name

 

Open index.js:

import("my-wasm-lib1215").then(module => {
  module.greet("World!@");
})

Run:

npm start

In the broswer console, you can see the msg:

Hello World!@!

posted @   Zhentiw  阅读(286)  评论(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工具
历史上的今天:
2017-11-08 [TypeScript] Restrict null and undefined via Non-Nullable-Types in TypeScript
2017-11-08 [PWA] Deal with caches in PWA
2016-11-08 [AngularJS] Using an AngularJS directive to hide the keyboard on submit
2016-11-08 [Javascript Natural] Break up language strings into parts using Natural
2014-11-08 [AngularJS] Angular 1.3 Anuglar hint
2014-11-08 [Node.js] 4. Modules
点击右上角即可分享
微信分享提示