Contribute to this guide

guideIntegrating CKEditor 5 with other frameworks

# Compatibility with Electron

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 the Ionic framework and Cordova. However, by default, Ionic disables user-select, which blocks typing via the virtual keyboard. You should set this property to text on the CKEditor component. Update your style sheet with the following code:

ckeditor {
    -webkit-user-select: text;
    user-select: text
}