rsnext/examples/with-webassembly
Tim Neutkens 483bd3ddda
Rename ZEIT to Vercel (#12075)
* Find/replace

* Update more URLs

* More rename

* Fix remaining examples

* More updates

* Update create-next-app

* Update remaining text

* Update

Co-authored-by: Shu Uesugi <shu@chibicode.com>
2020-04-21 11:47:12 +02:00
..
pages Improve linting rules to catch more errors (#9374) 2019-11-10 19:24:53 -08:00
src Add WebAssembly example 2018-09-17 21:48:06 +02:00
.gitignore Add WebAssembly example 2018-09-17 21:48:06 +02:00
add.wasm Add WebAssembly example 2018-09-17 21:48:06 +02:00
next.config.js Improve linting rules to catch more errors (#9374) 2019-11-10 19:24:53 -08:00
package.json Clean up examples directory (#11169) 2020-03-18 13:45:31 +01:00
README.md Rename ZEIT to Vercel (#12075) 2020-04-21 11:47:12 +02:00

WebAssembly example

This example shows how to import WebAssembly files (.wasm) and use them inside of a React component that is server rendered. So the WebAssembly code is executed on the server too. In the case of this example we're showing Rust compiled to WebAssembly.

How to use

Using create-next-app

Execute create-next-app with npm or Yarn to bootstrap the example:

npm init next-app --example with-webassembly with-webassembly-app
# or
yarn create next-app --example with-webassembly with-webassembly-app

Download manually

Download the example:

curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-webassembly
cd with-webassembly

Install it and run:

This example uses Rust compiled to wasm, the wasm file is included in the example, but to compile your own Rust code you'll have to install Rust.

npm install
npm run dev
# or
yarn
yarn dev

To compile src/add.rs to add.wasm use npm run build-rust.

Deploy it to the cloud with Vercel (Documentation).