Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including typo-js-ts with all npm packages installed. Try it out:

var Typo = require('typo-js-ts').Typo; new Typo('en_US') .ready.then(dict => { console.log(dict.check('mispelled')); // false console.log(dict.check("1st")); // true console.log(dict.check("1th")); // false console.log(dict.check("Alex")); // true console.log(dict.check("alex")); // false let spellSuggest = dict.suggest("spitting"); console.log(spellSuggest); // Correctly spelled words receive no suggestions. // output [ ] spellSuggest = dict.suggest("speling"); console.log(spellSuggest); // output [ "spelling", "spieling", "spewing", "peeling", "selling" ] spellSuggest = dict.suggest("speling", 1); // output [ 'spelling' ] console.log(spellSuggest); /* Expected console log false true false true false [] [ 'spelling', 'spieling', 'spewing', 'peeling', 'selling' ] [ 'spelling' ] */ });

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

typo-js-ts v2.0.4

Typo.js is a JavaScript spellchecker that uses Hunspell-style dictionaries.

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free