{"id":20827243,"url":"https://github.com/ccnokes/node-spellchecker","last_synced_at":"2026-04-25T13:04:56.687Z","repository":{"id":32123975,"uuid":"131653223","full_name":"ccnokes/node-spellchecker","owner":"ccnokes","description":"Fork of node-spellchecker that removes Hunspell due to legal issues that you probably don't have","archived":false,"fork":false,"pushed_at":"2023-10-05T17:42:59.000Z","size":2369,"stargazers_count":0,"open_issues_count":3,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-19T11:15:26.351Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ccnokes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-04-30T22:34:54.000Z","updated_at":"2019-04-22T17:02:44.000Z","dependencies_parsed_at":"2024-11-17T23:11:40.273Z","dependency_job_id":"eead4348-db5c-43cb-bc27-dd3885d3e9a2","html_url":"https://github.com/ccnokes/node-spellchecker","commit_stats":{"total_commits":197,"total_committers":19,"mean_commits":"10.368421052631579","dds":0.7715736040609137,"last_synced_commit":"9e8733122c47f8fcbc3b914fec5893cf969b8f69"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccnokes%2Fnode-spellchecker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccnokes%2Fnode-spellchecker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccnokes%2Fnode-spellchecker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccnokes%2Fnode-spellchecker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ccnokes","download_url":"https://codeload.github.com/ccnokes/node-spellchecker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243174905,"owners_count":20248363,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-17T23:11:33.376Z","updated_at":"2025-12-25T13:58:04.062Z","avatar_url":"https://github.com/ccnokes.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"### !!! Important note !!! \nThis is a fork of [node-spellchecker](https://github.com/atom/node-spellchecker), you probably want that one instead because it supports Windows 7 and Linux (via Hunspell). This one removes Hunspell due to issues my org has with it's license.\n\n# SpellChecker Node Module\n\n[![Build status](https://ci.appveyor.com/api/projects/status/kmilw63dodpu2xvr?svg=true)](https://ci.appveyor.com/project/ccnokes/node-spellchecker)\n[![Build Status](https://travis-ci.org/ccnokes/node-spellchecker.svg?branch=master)](https://travis-ci.org/ccnokes/node-spellchecker)\n\nNative bindings to [NSSpellChecker](https://developer.apple.com/library/mac/#documentation/cocoa/reference/ApplicationKit/Classes/NSSpellChecker_Class/Reference/Reference.html) or the [Windows 8 Spell Check API](https://msdn.microsoft.com/en-us/library/windows/desktop/hh869853(v=vs.85).aspx), depending on your platform.\n\n## Installing\n\n```bash\nnpm install @ccnokes/spellchecker\n```\n\n## Using\n\n```javascript\nimport { SpellChecker } from '@ccnokes/spellchecker'\n```\n\n### SpellChecker.isMisspelled(word)\n\nCheck if a word is misspelled.\n\n`word` - String word to check.\n\nReturns `true` if the word is misspelled, `false` otherwise.\n\n### SpellChecker.getCorrectionsForMisspelling(word)\n\nGet the corrections for a misspelled word.\n\n`word` - String word to get corrections for.\n\nReturns a non-null but possibly empty array of string corrections.\n\n### SpellChecker.checkSpelling(corpus)\n\nIdentify misspelled words in a corpus of text.\n\n`corpus` - String corpus of text to spellcheck.\n\nReturns an Array containing `{start, end}` objects that describe an index range within the original String that contains a misspelled word.\n\n### SpellChecker.checkSpellingAsync(corpus)\n\nAsynchronously identify misspelled words.\n\n`corpus` - String corpus of text to spellcheck.\n\nReturns a Promise that resolves with the Array described by `checkSpelling()`.\n\n### SpellChecker.add(word)\n\nAdds a word to the dictionary.\nWhen using Hunspell, this will not modify the .dic file; new words must be added each time the spellchecker is created. Use a custom dictionary file.\n\n`word` - String word to add.\n\nReturns nothing.\n\n### SpellChecker.isSupported()\n\nTells if your platform is supported. If it's not, you can use the API as normal, just nothing will actually work.\n\nReturns boolean.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccnokes%2Fnode-spellchecker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fccnokes%2Fnode-spellchecker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccnokes%2Fnode-spellchecker/lists"}