Skip to content

Instantly share code, notes, and snippets.

@RinatValiullov
Created November 29, 2019 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RinatValiullov/e2e920492c86d76ecac32e5d160face9 to your computer and use it in GitHub Desktop.
Save RinatValiullov/e2e920492c86d76ecac32e5d160face9 to your computer and use it in GitHub Desktop.
For translation of article "Natural language processing for Node.js" - https://bit.ly/2QZsts1
// index.js
var natural = require('natural');
var corpus = ['something', 'soothing'];
var spellcheck = new natural.Spellcheck(corpus);
console.log(spellcheck.getCorrections('soemthing', 1));
console.log(spellcheck.getCorrections('soemthing', 2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment