
Research
/Security News
Popular Tinycolor npm Package Compromised in Supply Chain Attack Affecting 40+ Packages
Malicious update to @ctrl/tinycolor on npm is part of a supply-chain attack hitting 40+ packages across maintainers
@webspellchecker/wproofreader-ckeditor5
Advanced tools
Multilingual spelling and grammar checking plugin for CKEditor 5
The multilingual spelling and grammar checking solution for CKEditor 5. It provides both instant and in dialog proofreading modes in a convenient UI.
Starting with version 3.1.0, the WProofreader plugin for CKEditor 5 offers basic TypeScript support. The package contains a type definition file (.d.ts), enabling integration and customization of the functionality using WProofreader options in TypeScript projects.
WProofreader plugin for CKEditor 5 inherits all functionality of the WProofreader component with slight adaptation to the view and features of the editor. For more details, visit the WProofreader repo or official web page.
Install the plugin.
You can integrate the plugin using one of these methods:
To install the plugin via npm, run the following command:
npm install @webspellchecker/wproofreader-ckeditor5
Import the WProofreader plugin into the project and configure it. Then, add it to the create()
method configuration and include it as a toolbar item.
import { ClassicEditor } from 'ckeditor5';
import { WProofreader } from '@webspellchecker/wproofreader-ckeditor5';
...
ClassicEditor
.create( editorElement, {
plugins: [ ..., WProofreader ],
toolbar: [ ..., 'wproofreader' ],
wproofreader: {
/* config of WProofreader */
}
} )
To load the script, utilize the browser's import map feature. This allows you to map a simple specifier to the full CDN URL, making it easier to reference the necessary files.
<script type="importmap">
{
"imports": {
"ckeditor5": "https://cdn.ckeditor.com/ckeditor5/43.0.0/ckeditor5.js",
"@webspellchecker/wproofreader-ckeditor5": "https://cdn.jsdelivr.net/npm/@webspellchecker/wproofreader-ckeditor5@3.1.1/dist/browser/index.js"
}
}
</script>
In the following script tag, import the WProofreader plugin, add it to the plugins
array, and include it as a toolbar item.
<script type="module">
import { ClassicEditor } from 'ckeditor5';
import { WProofreader } from '@webspellchecker/wproofreader-ckeditor5';
ClassicEditor
.create( editorElement, {
plugins: [ ..., WProofreader ],
toolbar: [ ..., 'wproofreader' ],
wproofreader: {
/* config of WProofreader */
}
} )
</script>
Configure the plugin
After installing the plugin, you need to configure it in the CKEditor 5 setup. The configuration is added to the wproofreader
field. For a detailed list of available customization options, refer to the documentation.
For the Cloud-based version of WProofreader:
wproofreader: {
lang: 'en_US', // sets the default language
serviceId: 'your-service-ID', // required for the Cloud version only
srcUrl: 'https://svc.webspellchecker.net/spellcheck31/wscbundle/wscbundle.js'
}
serviceId
is a mandatory parameter for activating and using the plugin pointed to the Cloud-based version of WProofreader.
For the Server-based version of WProofreader:
wproofreader: {
lang: 'en_US', // sets the default language
serviceProtocol: 'https',
serviceHost: 'localhost',
servicePort: '443',
servicePath: 'virtual_directory/api', // by default the virtual_directory is wscservice
srcUrl: 'https://host_name/virtual_directory/wscbundle/wscbundle.js'
}
Unlike the Cloud-based version, the serviceId
parameter is not used here. Instead, it is required to specify the path to the backend entry point hosted on the client’s infrastructure.
To find out more, refer the following documentation:
We use GitHub Issues as the official public bug tracker for WProofreader plugin for CKEditor 5. Here are some recommendations to take into account when reporting an issue:
Holders of an active subscription to the services or a commercial license have access to professional technical assistance directly from the support team. Contact us here.
Licensed under the terms of MIT license. For full details about the license, please check the LICENSE.md
file.
4.0.0 - 2025-07-09
Provide support of CKEditor 5 v46.0.0.
FAQs
Multilingual spelling and grammar checking plugin for CKEditor 5
We found that @webspellchecker/wproofreader-ckeditor5 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Malicious update to @ctrl/tinycolor on npm is part of a supply-chain attack hitting 40+ packages across maintainers
Security News
pnpm's new minimumReleaseAge setting delays package updates to prevent supply chain attacks, with other tools like Taze and NCU following suit.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.