Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 814 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 814 Bytes

gomoku

Build Status

A Gomoku Web Applition to explore minimax algorithm with alpha-beta tunning, Azure Function, Rust and WebAssembly.

Usage

Build server backend

cd backend
cargo build --release --features "server"
./target/release/gomoku -s  //start server listen to http://localhost:3000

Open client/index.html in browser and have fun.

Build WASM backend

cargo install wasm-bindgen-cli wasm-pack
./wasm.sh

demo

Credits

Thanks Yunzhu.Li for initial version of Client.