electron-spell-check-provider
Electron's spell-check API looks straightforward… until
you have to pull in and configure node-spellchecker
:
webFrame.setSpellCheckProvider('en-US', true, {spellCheck: function(text) {+ return !(require('spellchecker').isMisspelled(text));}});
Which improperly flags contractions:

And only underlines misspelled words, leaving you to show suggestions yourself…
Or you can use this module:
webFrame;
Installation
yarn add electron-spell-check-provider
or
npm install electron-spell-check-provider --save
Note: This uses a native module, so you will need to rebuild your modules after installing.
Usage
// In the renderer process:var webFrame = webFrame;var SpellCheckProvider = ; webFrame;
'en-US' is the only supported language at present.
But how do I show spelling suggestions (in the context menu)?
As the text selection changes, Electron will poll the spell-check provider.
If the current word is misspelled, the provider will emit a 'misspelling'
event
with spelling suggestions:
webFrame;
If you save these suggestions, you can then show them in a menu when the
'contextmenu'
event next fires.
Here's a full implementation that uses
electron-editor-context-menu
to build the menu
for you in addition to handling some other gotchas:
/** * Enables spell-checking and the right-click context menu in text editors. * Electron (`webFrame.setSpellCheckProvider`) only underlines misspelled words; * we must manage the menu ourselves. * * Run this in the renderer process. */var remote = remote;var webFrame = webFrame;var SpellCheckProvider = ;// `remote.require` since `Menu` is a main-process module.var buildEditorContextMenu = remote; var selection; { selection = isMisspelled: false spellingSuggestions: ;}; // Reset the selection when clicking around, before the spell-checker runs and the context menu shows.window; // The spell-checker runs when the user clicks on text and before the 'contextmenu' event fires.// Thus, we may retrieve spell-checking suggestions to put in the menu just before it shows.webFrame; window;
Adding words to the dictionary
You can add a word to the spell-check dictionary by calling the add
instance method. Pass the word to add as an argument. Additions to the dictionary are persistent.
let provider = 'en-US';// ...let newWord = window;provider;
You can do this in a context menu click handler function for an "Add to Dictionary" menu item.
Contributing
We welcome pull requests! In particular, we'd love to see support for additional languages.
Please lint your code.
Copyright and License
Copyright 2016 Mixmax, Inc., licensed under the MIT License.
Release History
- 1.1.0 Support adding words to the dictionary (#6)
- 1.0.0 Initial release.