1.1.1 • Published 2 years ago

spell-check-website v1.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 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

2 years ago

1.1.0

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago