https://github.com/ccnokes/electron-spellchecker
Fork of electron-spellchecker that does not use any dependencies with GPL style licenses
https://github.com/ccnokes/electron-spellchecker
Last synced: 11 months ago
JSON representation
Fork of electron-spellchecker that does not use any dependencies with GPL style licenses
- Host: GitHub
- URL: https://github.com/ccnokes/electron-spellchecker
- Owner: ccnokes
- License: mit
- Created: 2018-05-01T22:51:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-01T22:57:08.000Z (about 8 years ago)
- Last Synced: 2025-05-27T11:47:22.454Z (about 1 year ago)
- Language: JavaScript
- Size: 271 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# electron-spellchecker
## Quick Start
```js
import { SpellCheckHandler, ContextMenuListener, ContextMenuBuilder } from '@ccnokes/electron-spellchecker';
const spellCheckHandler = new SpellCheckHandler();
const contextMenuBuilder = new ContextMenuBuilder(spellCheckHandler);
const contextMenuListener = new ContextMenuListener((info) => {
contextMenuBuilder.showPopupMenu(info);
});
spellCheckHandler.init();
```