This is a WebAssembly demo for auto-completion using the trie Go library. The WASM module contains a Trie populated with English dictionary words. Searching a word retrieves max 10 results.

The default search is Prefix search i.e. results will have the same prefix.

If "Edit distance search" is enabled, then results will be at most 3 edit distance away and in least-edited-first order.