| I run the local server works well as a spelling/grammar checking when using the ngrams. About ten gig in size total. The browser extension is just so-so, I don't love the UI even now but considering the privacy and quality it is hard to be disappointed, there's nothing else out there. If anyone wants to get set up fast on Windows: - Server Doc/Download Link: https://dev.languagetool.org/http-server - ngram Doc/Download Link: https://dev.languagetool.org/finding-errors-using-n-gram-dat... I've had success with Amazon Corretto jre8 64x for my Java[0][1] and I use this bat file to launch it upon reboot (put it in the same folder as languagetool-server.jar): SET PATH=C:\program files\Amazon Corretto\jre8\bin\
start javaw -cp languagetool-server.jar org.languagetool.server.HTTPServer --port 8081 --allow-origin "\*" -l en-US --languageModel "C:\LanguageTool\LanguageTool-5.4\ngram"
Set path just adds jre8 to bat's path context (there are multiple other ways to accomplish this). "start" just hides the black cmd window while the server is running. --languageModel must be the fully qualified path to the ngram.You can automate executing this script either using Windows' scheduled tasks or just putting a shortcut to it in the Startup Folder (Win+R enter shell:common startup). And don't forget to re-configure the browser extension. The setting is in Experimental Settings -> LanguageTool API Server URL -> Local Server [0] https://corretto.aws/downloads/latest/amazon-corretto-8-x64-...
[1] https://docs.aws.amazon.com/corretto/latest/corretto-8-ug/do... |