npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rust-wasm

v0.3.1

Published

Example repo that demonstrates how to export a rust WASM binary

Downloads

35

Readme

Rust WASM

A basic example of how to package a rust module into WASM for comsumption as an npm module.

We don't care about publishing to cargo for now, we just want to get our WASM onto npm for users to install and use!

Usage

You can install this module and start using the WASM generated within today!

npm i rust-wasm

This library exports a lib that has the functions add_one, factorial, recursiveFactorial and callJs within it.

Example:

const lib = require('rust-wasm')
lib.add_one(41)
lib.factorial(10)
lib.recursiveFactorial(10)
lib.callJs()

Benchmarks

I benchmarked the WASM generated against similar JS fuctionality. The output is collapsed below. The WASM generated can be up to 5x faster than JS when running a recursive factorial function, but when running a factorial function that uses a loop, the difference ends up being insignificant for larger factorials, and non-beneficial to use WASM for small factorials (js ended up 2x faster for 5!).

All benchmarks were run on a MacBook Pro (Retina, 13-inch, Early 2015) with 2.7 GHz Intel i5 CPU & 8 GB 1867 MHz DDR3 RAM using node v8.6.0.

factorial WASM for increment 10 x 58,868,287 ops/sec ±1.39% (84 runs sampled) factorial JS for increment 10 x 54,040,767 ops/sec ±7.30% (79 runs sampled) Benchmark factorial for increment 10 Fastest is factorial WASM for increment 10

factorial WASM for increment 20 x 35,854,560 ops/sec ±1.99% (89 runs sampled) factorial JS for increment 20 x 31,035,880 ops/sec ±2.70% (84 runs sampled) Benchmark factorial for increment 20 Fastest is factorial WASM for increment 20

factorial WASM for increment 40 x 17,120,968 ops/sec ±7.02% (77 runs sampled) factorial JS for increment 40 x 13,932,862 ops/sec ±3.40% (85 runs sampled) Benchmark factorial for increment 40 Fastest is factorial WASM for increment 40

factorial WASM for increment 80 x 8,029,735 ops/sec ±4.43% (82 runs sampled) factorial JS for increment 80 x 5,960,309 ops/sec ±6.79% (71 runs sampled) Benchmark factorial for increment 80 Fastest is factorial WASM for increment 80

factorial WASM for increment 160 x 5,005,555 ops/sec ±4.18% (88 runs sampled) factorial JS for increment 160 x 4,608,722 ops/sec ±3.24% (88 runs sampled) Benchmark factorial for increment 160 Fastest is factorial WASM for increment 160

recursive_factorial WASM for increment 5 x 62,107,376 ops/sec ±2.57% (84 runs sampled) recursive_factorial JS for increment 5 x 25,075,719 ops/sec ±2.85% (92 runs sampled) Benchmark recursiveFactorial for increment 5 Fastest is recursive_factorial WASM for increment 5

recursive_factorial WASM for increment 10 x 52,741,036 ops/sec ±2.04% (88 runs sampled) recursive_factorial JS for increment 10 x 12,485,573 ops/sec ±1.78% (87 runs sampled) Benchmark recursiveFactorial for increment 10 Fastest is recursive_factorial WASM for increment 10

recursive_factorial WASM for increment 20 x 31,810,722 ops/sec ±3.25% (90 runs sampled) recursive_factorial JS for increment 20 x 5,432,902 ops/sec ±0.54% (94 runs sampled) Benchmark recursiveFactorial for increment 20 Fastest is recursive_factorial WASM for increment 20

recursive_factorial WASM for increment 40 x 13,918,201 ops/sec ±3.44% (81 runs sampled) recursive_factorial JS for increment 40 x 2,919,241 ops/sec ±1.73% (91 runs sampled) Benchmark recursiveFactorial for increment 40 Fastest is recursive_factorial WASM for increment 40

recursive_factorial WASM for increment 80 x 8,184,447 ops/sec ±1.55% (88 runs sampled) recursive_factorial JS for increment 80 x 1,516,359 ops/sec ±2.53% (90 runs sampled) Benchmark recursiveFactorial for increment 80 Fastest is recursive_factorial WASM for increment 80

recursive_factorial WASM for increment 160 x 5,023,411 ops/sec ±0.99% (94 runs sampled) recursive_factorial JS for increment 160 x 764,093 ops/sec ±2.52% (91 runs sampled) Benchmark recursiveFactorial for increment 160 Fastest is recursive_factorial WASM for increment 160

Local dev/setup

You need rust nightly installed and the toolchain needed to compile to wasm32-unknown-unknown. You need the wasm-gc module installed, too.

First up, install rustup

Then run the following:

rustup install nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
cargo install --git https://github.com/alexcrichton/wasm-gc

This should get the toolchain needed to develop your rust modules for npm!

Initialising your own repos

To create a similar repo, follow the following steps:

  1. Create your folder.
  2. Initialise cargo within your module cargo +nightly new . and add crate-type = ["cdylib"] to a [lib] section in your Cargo.toml. Note - Its important what you name your module in the Cargo.toml file. This will become the name of the generate .wasm file. See this repos Cargo.toml for example.
  3. npm init
  4. Setup your build step as needed in your package.json. I've hacked something together to use cargo and wasm-gc under the hood in this repo. It's worth adding build output to a .gitignore, and adding any intermediary build output to a .gitignore file. Note - Its a good idea to package your WASM into a requirable .js file for browser package users, as adding a file to the npm package to be read as a dependency can be tricky. See my requirify-wasm section in my package.json to see how to do this.
  5. Create an index file that exports your module! Note - I export my module synchronously, which will compile and load my WASM in one step. This might not be well suited for larger libs. Use the initialise-wasm module for loading your wasm with the options you need.
  6. Publish.

I may have glossed over some details :P This example repo + the description above should be enough to get you started though! :D

Licence

MIT