Skip to content

Latest commit

 

History

History

wasm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

WebAssembly Hello World

An example of developing a WebAssembly that prints "hello world" in the browser console.

Setup

  1. Build the WebAssembly (wasm) and serve the wasm on a web server.

    $ make run
  2. Test the wasm by launching a web browser and navigate to http://localhost:8000. See the console for the output of "hello world".

Notes

  1. See Makefile for instructions on building a wasm.

Reference and Credits