Skip to content

Instantly share code, notes, and snippets.

@JessicaWachtel
Created November 21, 2025 17:01
Show Gist options
  • Select an option

  • Save JessicaWachtel/1689b7b19823aa4369c3a0f3e2ce36c1 to your computer and use it in GitHub Desktop.

Select an option

Save JessicaWachtel/1689b7b19823aa4369c3a0f3e2ce36c1 to your computer and use it in GitHub Desktop.
const nlpTools = require('natural');
const wordStore = ['cat', 'dog', 'elephant', 'giraffe'];
const typoChecker = new nlpTools.Spellcheck(wordStore);
console.log(typoChecker.getCorrections('elephnt', 2));
console.log(typoChecker.getCorrections('grffe', 2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment