惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
博客园 - 司徒正美
D
DataBreaches.Net
有赞技术团队
有赞技术团队
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
I
InfoQ
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
小众软件
小众软件
G
Google Developers Blog
博客园 - 【当耐特】
U
Unit 42
美团技术团队
B
Blog
D
Docker
Blog — PlanetScale
Blog — PlanetScale

Deno

Deno 2.8 | Deno Claw Patrol: an open-source security firewall for agents | Deno Fresh 2.3: Zero JS by default, View Transitions, and Temporal support | Deno Deno 2.7: Temporal API, Windows ARM, and npm overrides | Deno Build a dinosaur runner game with Deno, pt. 6 | Deno Build a dinosaur runner game with Deno, pt. 5 | Deno Deno Deploy is Generally Available | Deno Introducing Deno Sandbox | Deno Build a dinosaur runner game with Deno, pt. 4 | Deno Build a dinosaur runner game with Deno, pt. 3 | Deno Build a dinosaur runner game with Deno, pt. 2 | Deno React / Next.js Denial-of-Service Vulnerability: Deno Deploy users protected | Deno Deno 2.6: dx is the new npx | Deno Build a dinosaur runner game with Deno, pt. 1 | Deno React Server Functions / Next.js Vulnerability: Deno Deploy users protected | Deno My highlights from the new Deno Deploy | Deno Deno's Other Open Source Projects | Deno How Deno protects against npm exploits | Deno Help Us Raise $200k to Free JavaScript from Oracle | Deno Deno 2.5: Permissions in the config file | Deno Fresh 2.0 Graduates to Beta, Adds Vite Support | Deno Deno 2.4: deno bundle is back | Deno JavaScript™ Trademark Update | Deno What's coming to JavaScript | Deno A brief history of JavaScript | Deno Reports of Deno's Demise Have Been Greatly Exaggerated | Deno An Update on Fresh | Deno How Plaid migrated 100 services to a new database platform 5x faster with Deno | Deno Deno 2.3: Improved deno compile, local npm packages, and more | Deno Add JSR packages with pnpm and Yarn | Deno
Intro to Wasm in Deno | Deno
2025-01-28 · via Deno

JavaScript is a scripting language—distant from the machine code your CPU actually consumes. But JavaScript has a way to execute binary machine code, or something close to it, called WebAssembly. WebAssembly, or Wasm, is a low-level, portable binary format that runs at near-native speeds in the browser.

Wasm is a compilation target for languages like C, C++, and Rust, enabling high-performance applications like Google Earth and Photoshop to run directly in the browser. It’s also highly secure, thanks to strict sandboxing, making it ideal for sensitive applications like financial or healthcare platforms. With Deno 2.1’s first-class Wasm support, using Wasm modules is simpler than ever.

In this post, we’ll show you how to build a simple Wasm module and use it to call Rust from JavaScript.

  • Building a Wasm module
  • Call Rust from JavaScript via Wasm
  • What’s next?

Building a Wasm module

Let’s build a simple Wasm module and import it into Deno.

Start with a small function, add, using WebAssembly text format. Create a new file, add.wat, and add the following:

(module
  (func (export "add") (param $a i32) (param $b i32) (result i32)
    local.get $a
    local.get $b
    i32.add
  )
)

Compile this to add.wasm using wat2wasm:

To visualize the generated Wasm binary, use Wasm Code Explorer:

Add function visualized

Now, import add.wasm into Deno:

import { add } from "./add.wasm";

console.log(add(1, 2));

The output:

When importing Wasm with Deno, it understands the exports and typechecks them. For more on importing Wasm, refer to the documentation.

This example is simple, but most production use cases compile Wasm from Rust, C++, or Go, rather than writing in wat.

Call Rust from JavaScript via Wasm

Now, let’s import a Rust function into JavaScript using wasmbuild. This CLI tool generates glue code for calling Rust crates in JavaScript via wasm-bindgen.

First, ensure Deno and Rust are installed (deno -v, rustup -v, and cargo -v). In a new directory, create a deno.json:

{
  "tasks": {
    "wasmbuild": "deno run -A jsr:@deno/wasmbuild@0.19.0"
  }
}

Run the task with the new argument:

$ deno task wasmbuild new
Task wasmbuild deno run -A jsr:@deno/wasmbuild@0.19.0 "new"
Creating rs_lib...
To get started run:
deno task wasmbuild
deno run mod.js

This scaffolds a Rust crate in rs_lib, including example functions and tests:


use wasm_bindgen::prelude::*;

#[wasm_bindgen]
pub fn add(a: i32, b: i32) -> i32 {
  a + b
}

#[wasm_bindgen]
pub struct Greeter {
  name: String,
}

#[wasm_bindgen]
impl Greeter {
  #[wasm_bindgen(constructor)]
  pub fn new(name: String) -> Self {
    Self { name }
  }

  pub fn greet(&self) -> String {
    format!("Hello {}!", self.name)
  }
}

#[cfg(test)]
mod tests {
  use super::*;

  #[test]
  fn it_adds() {
    let result = add(1, 2);
    assert_eq!(result, 3);
  }

  #[test]
  fn it_greets() {
    let greeter = Greeter::new("world".into());
    assert_eq!(greeter.greet(), "Hello world!");
  }
}

This file defines a function called add, which takes two signed integers and returns a signed integer back, and a structure Greeter with two of its own functions. It’s then exported for use in JavaScript by the #[wasm_bindgen] attribute.

Here you can write your own Rust, but for our example, we’ll use this generated code.

Next, to build the project, we can run the wasmbuild task:

This will generate a few files:

  • lib/rs_lib.internal.js
  • lib/rs_lib.js
  • lib/rs_lib.d.ts
  • lib/rs_lib.wasm
  • mod.js

We can visualize the generated wasm binary, lib/rs_lib.wasm, with Wasm Code Explorer:

Rust function visualized

Now let’s import it. The last file listed, mod.js actually includes an example of how to import the Rust function in JavaScript:

import { add, Greeter } from "./lib/rs_lib.js";


console.log(add(1, 1));


const greeter = new Greeter("world");
console.log(greeter.greet());

This imports add and Greeter, functions originally defined in Rust but then converted to JavaScript, and executes them. You can try it by running deno mod.js:

$ deno mod.js
2
Hello world!

It works!

Want to learn more about using Rust and JavaScript? Check out Roll Your Own JavaScript Runtime with Rust.

What’s next?

We hope this gentle introduction to WebAssembly has not only showed you how to use it with JavaScript and in the browser, but inspired some potential use cases.

With Deno 2.1, importing Wasm modules is as easy as importing any JavaScript module. If you’re using Rust, we intend to improve importing Rust into JavaScript via wasmbuild by simplifying the Wasm compilation step and only exposing higher level JavaScript API.

Finally, here are some additional resources that shows what you can do with Wasm and how it can be used to improve your projects:

🚨️ Deno 2.1 was just released 🚨️

and much more!