Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

This is the Web frontend for Pinky.

It's mostly meant as a demo for Rust's WebAssembly capabilities and the stdweb project.

Become a patron

See it in action

Building (using Rust's native WebAssembly backend)

  1. Install newest Rust:

    $ curl https://sh.rustup.rs -sSf | sh
    
  2. Install nightly:

    $ rustup install nightly
    $ rustup default nightly
    
  3. Install cargo-web:

    $ cargo install -f cargo-web
    
  4. Build it:

    $ cargo web start --release
    
  5. Visit http://localhost:8000 with your browser.

Building for other backends

You can add --target=asmjs-unknown-emscripten or --target=wasm32-unknown-emscripten argument to build it using another backend.