1.0.5 • Published 5 years ago
rt-spellcheck v1.0.5
Real Time Spellchecker in Javascript
A lightweight spellchecker written in Javascript.
Installation
yarn add rt-spellcheckOptionaly you could add dictionary
yarn add dictionary-enAPI
Initialize a spellchecker instance:
import Spellchecker from 'rt-spellcheck'
const spellchecker = new Spellchecker('en')
const isValid = spellchecker.check('red')Or load custom dictionary
const Spellchecker = require('rt-spellcheck')
const aff = require('dictionary-en/index.aff')
const dic = require('dictionary-en/index.dic')
const spellchecker = new Spellchecker()
spellchecker.dict.addAffixFile(aff)
spellchecker.dict.addDicFile(dic)
const isValid = spellchecker.check('red')License
Open source licensed as MIT.