Integrating CKEditor 5 with JavaScript frameworks

Is CKEditor 5 compatible with framework XYZ?

Yes. CKEditor 5 is compatible with every JavaScript framework that we have heard of so far. CKEditor 5 is a JavaScript rich text editing component (a pretty complex one but still) and it does not require any uncommon techniques or technologies to be used. Therefore, unless the framework that you use has very not typical limitations, CKEditor 5 is compatible with it.

How do I use CKEditor 5 with my framework?

While CKEditor 5 is compatible with your framework and initializing it requires a single method call, integrating CKEditor 5 with your framework may require using an existing or writing a new adapter (integration layer) that will communicate your framework with CKEditor 5.

When checking how to integrate CKEditor 5 with your framework you can follow these steps:

There are three official integrations so far: for React, Angular 2+, and for Vue.js.

  • If not, search for community-driven integrations. Most of them are available on npm.

  • If none exists, integrate CKEditor 5 with your framework by yourself.

CKEditor 5 offers ready-to-use builds that expose a rich JavaScript API which you can use to create editors and control them.

Official WYSIWYG editor integrations

There are three official integrations so far:

We plan to provide more integrations with time. We would like to hear your ideas what we should work on next.

Compatibility with Electron

Starting from version 11.0.0 CKEditor 5 is compatible with Electron. Using CKEditor 5 in Electron applications does not require any additional steps.

Check out a sweet screencast of CKEditor 5 with real-time collaborative editing in Electron.

Compatibility with Ionic and Cordova

CKEditor 5 is compatible with Ionic framework and Cordova. However, Ionic disables user-select by default, what blocks typing via the virtual keyboard. It’s required to set this property to text on the CKEditor component. Just update your stylesheet with the following code:

  1. ckeditor {
  2. -webkit-user-select: text;
  3. user-select: text
  4. }