You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
c8df7d2c5a | 6 years ago | |
---|---|---|
pkg | 6 years ago | |
src | 6 years ago | |
.gitignore | 6 years ago | |
Cargo.toml | 6 years ago | |
README.md | 6 years ago | |
build.ps1 | 6 years ago | |
build.sh | 6 years ago | |
index.html | 6 years ago | |
serve.py | 6 years ago |
README.md
Seed Quickstart
To get started:
-
Clone this repo
-
If you don't have Rust and wasm-bindgen installed, Download it, and run the following commands:
rustup update
rustup target add wasm32-unknown-unknown
cargo install wasm-bindgen-cli
- Run
build.sh
orbuild.ps1
, then then start a dev server that supports WASM. For example, with Python installed, runpython pyserve.py
. (Linux users may need to runpython3 serve.py
.)
Once you rename the crate in Cargo.toml
(The name
field under [Package]
), make the
following changes:
-
Replace both occurances of
appname
(/appname.js
and/appname.wasm
) inindex.html
with your crate's name. -
Make the same replacement in either
build.sh
, orbuild.ps1
, depending on your operating system. You may delete the other one.