快速开始
快速开始
环境配置
$ curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
$ cargo install cargo-generate
$ npm install npm@latest -g
Backend
$ cargo generate --git https://github.com/rustwasm/wasm-pack-template
项目结构如下所示:
├── Cargo.toml
├── LICENSE_APACHE
├── LICENSE_MIT
├── README.md
└── src
├── lib.rs
└── utils.rs
extern crate cfg_if;
extern crate wasm_bindgen;
mod utils;
use cfg_if::cfg_if;
use wasm_bindgen::prelude::*;
cfg_if! {
// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
// allocator.
if #[cfg(feature = "wee_alloc")] {
extern crate wee_alloc;
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
}
}
#[wasm_bindgen]
extern {
fn alert(s: &str);
}
#[wasm_bindgen]
pub fn greet() {
alert("Hello, wasm-game-of-life!");
}
wasm-pack
来协调以下构建步骤。
- 确保我们有
Rust 1.30 或更新的版本,并通过rustup
安装wasm32-unknown-unknown
目标。 - 通过 “cargo “将我们的
Rust 源编译成WebAssembly .wasm
二进制。 - 使用 “wasm-bindgen “来生成
JavaScript API ,以便使用我们的Rust 生成的WebAssembly 。
然后运行如下命令:
wasm-pack build
当构建完成后,我们可以在 pkg
目录下找到它的工件,它应该有这些内容。
pkg/
├── package.json
├── README.md
├── hello_world_bg.wasm
├── hello_world.d.ts
└── hello_world.js
import * as wasm from "./hello_world_bg";
// ...
export function greet() {
return wasm.greet();
}
export function greet(): void;
{
"name": "hello_world",
"collaborators": ["Your Name <your.email@example.com>"],
"description": null,
"version": "0.1.0",
"license": null,
"repository": null,
"files": ["hello_world_bg.wasm", "hello_world.d.ts"],
"main": "hello_world.js",
"types": "hello_world.d.ts"
}
Frontend
$ npm init wasm-app www
hello_world/www/
├── bootstrap.js
├── index.html
├── index.js
├── LICENSE-APACHE
├── LICENSE-MIT
├── package.json
├── README.md
└── webpack.config.js
这个
{
// ...
"dependencies": {
"hello_world": "file:../pkg" // Add this line!
// ...
}
}
import * as wasm from "hello_world";
wasm.greet();