Home

Awesome

stockfish.wasm

WebAssembly port of the multi variant chess engine Fairy-Stockfish .

See it in action on PyChess .

Building

Assuming em++ (>= 1.39.6) is available:

cd src
make ARCH=wasm build -j

Usage

Install http-server:

npm install http-server -g

Standing in the src directory type:

http-server

Then open your browser and visit localhost:8080 .

Requirements

Uses the latest WebAssembly threading proposal.

Chrome

Firefox

Other browsers

No support.

Feature detection

function wasmThreadsSupported() {
  // WebAssembly 1.0
  var source = Uint8Array.of(0x0, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00);
  if (typeof WebAssembly !== 'object' || !WebAssembly.validate(source)) return false;

  // SharedArrayBuffer
  if (typeof SharedArrayBuffer !== 'function') return false;

  // Atomics
  if (typeof Atomics !== 'object') return false;

  // Shared memory
  var mem = new WebAssembly.Memory({shared: true, initial: 8, maximum: 16});
  if (!(mem.buffer instanceof SharedArrayBuffer)) return false;

  // Structured cloning
  try {
    // You have to make sure nobody cares about these messages!
    window.postMessage(mem, '*');
  } catch (e) {
    return false;
  }

  // Growable shared memory (optional)
  try {
    mem.grow(8);
  } catch (e) {
    return false;
  }

  return true;
}

Current limitations

License

Thanks to the Stockfish team for sharing the engine under the GPL3.