Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 945 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 945 Bytes

Eldrow: Wordle in Reverse

Setup

First you are gonna have to get Rust at rust-lang.org. Then, you will need to have nodejs installed.

For the WebAssembly side of things, you are going to have to get to Rust nightly, and install the WebAssembly compiler.

rustup default nightly
rustup target add wasm32-unknown-unknown --toolchain nightly

Then, you are going to need wasm-pack

cargo install wasm-pack

Finally, you can compile the WebAssembly module and start a development web server.

wasm-pack init .
cd web
npm install
npm run serve

You can then open the page at localhost:8080

Deploy

Copy the files in web/dist and web/public into the same directory on your static web server.

License

MIT

Starter code from: https://github.com/adamisntdead/wasm-starter