1.1.1 • Published 3 years ago

spell-check-website v1.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Spell Check Website

Use inside node script

const spellCheck = require("spell-check-website");

(async () => {
    let res = await spellCheck("https://spellll.surge.sh/");
    console.log(res);
})();

/* results
{
  link: 'https://spellll.surge.sh/',
  words: [
    { wrong: 'acccount', correct: 'account' },
    { wrong: 'avalable', correct: 'available' },
    { wrong: 'featurs', correct: 'feature' },
    { wrong: 'liek', correct: 'like' }
  ]
}
*/

Or use as command line

spell-check-website check "https://spellll.surge.sh"
1.1.1

3 years ago

1.1.0

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago