Trie. A fast word-lookup tool that organizes dictionaries for quick searches.

github.com/jeresig/trie-js

Vaya's read on this project

Problem, audience, market, and the verdict — sign in to see it.

Updates

May 2016
  • Merge pull request #8 from benox3/master
  • Sort `words` before building trie
May 2014
  • Merge pull request #7 from joybro/master
  • Fix finding repeated word bug
March 2011
  • Change the ORD() function to an object for faster lookups, based upon…
  • Add a simple test for checking the lookup time of a Succinctly-stored…
  • Add in tests for succinct trie and binary search string.
  • Update to Benchmark.js 0.1.348.
  • Mention the blog post on JavaScript Trie Performance Analysis in the …
  • Rewrite tests to use Benchmark.js. Add the while(true){} loops back i…
  • Use Benchmark.js for performance testing.
  • Fix rogue endline that snuck through the build process.
  • Make sure that JavaScript reserved words are quoted and add a test fo…
  • Pulling in the initial work and tests.