CKEditor 5 Tweet
Build Status Dependency Status devDependency Status
Join newsletter Follow twitter
A set of ready-to-use rich text editors created with a powerful framework. Made with real-time collaborative editing in mind.
CKEditor 5 Classic rich text editor build screenshot
CKEditor 5 Builds are a set of ready-to-use rich text editors. Every "build" provides a single type of editor with a set of features and a default configuration.
The following CKEditor 5 Builds are currently available:
Creating an editor using a CKEditor 5 build is very simple and can be described in two steps:
- Load the desired editor via the
<script>tag. - Call the static
create()method to create the editor.
In your HTML page add an element that CKEditor should replace:
<div id="editor"></div>
Load the classic editor build (you can choose between CDN, npm and zip downloads):
<script src="https://cdn.ckeditor.com/ckeditor5/<version>/classic/ckeditor.js"></script>
Call the ClassicEditor.create() method:
<script> ClassicEditor .create( document.querySelector( '#editor' ) ) .catch( error => { console.error( error ); } ); </script>
You’re ready to go!
To find out how to start with other builds check the Quick start guide in the CKEditor 5 documentation.
CKEditor 5 Builds allow you to quickly and easily initialize one of the many types of editors in your application. At the same time, CKEditor 5 is also a framework for creating custom-made rich text editing solutions.
To find out how to start building your own editor from scratch go to CKEditor 5 Framework overview section of CKEditor 5 documentation.
To find out more see the following CKEditor 5 documentation sections:
- API documentation
- CKEditor 5 Framework documentation
- CKEditor 5 Builds documentation
- CKEditor 5 Features documentation
- CKEditor 5 Examples
The documentation is far from being complete and will be constantly evolving (as will the editor) until it is ready for v1.0.0.
For FAQ please go to the CKEditor Ecosystem help center. For a high-level overview of the project see the CKEditor Ecosystem website.
The development repository of CKEditor 5 is located at https://github.com/ckeditor/ckeditor5. This is the best place for bringing opinions and contributions. Letting the core team know if they are going in the right or wrong direction is great feedback and will be much appreciated!
CKEditor 5 is a modular, multi-package, monorepo project. It consists of several packages that create the editing framework, based on which the feature packages are implemented.
The ckeditor5 repository is the place that centralizes the development of CKEditor 5. It bundles different packages into a single place, adding the necessary helper tools for the development workflow, like the builder and the test runner. Basic information on how to set up the development environment can be found in the documentation.
See the official contributors' guide to learn how to contribute your code to the project.
Each repository handles its issues independently. However, it is recommended to report issues in this repository unless you know to which specific repository the issue belongs.
Read more on the Support page.
See CKEditor 5 release blog posts on the CKEditor blog.
| Name | Version | Description |
|---|---|---|
@ckeditor/ckeditor5-engine
|
@ckeditor/ckeditor5-engine npm package badge | The editing engine. |
@ckeditor/ckeditor5-core
|
@ckeditor/ckeditor5-core npm package badge | The core editor architecture. |
@ckeditor/ckeditor5-ui
|
@ckeditor/ckeditor5-ui npm package badge | The editor UI library. |
@ckeditor/ckeditor5-utils
|
@ckeditor/ckeditor5-utils npm package badge | The editor utilities library. |
@ckeditor/ckeditor5-upload
|
@ckeditor/ckeditor5-upload npm package badge | The file upload utilities. |
@ckeditor/ckeditor5-widget
|
@ckeditor/ckeditor5-widget npm package badge | The widget API. |
@ckeditor/ckeditor5-watchdog
|
@ckeditor/ckeditor5-watchdog npm package badge | The watchdog feature, which keeps CKEditor 5 editors running. |
@ckeditor/ckeditor5-cloud-services
|
@ckeditor/ckeditor5-cloud-services npm package badge | CKEditor 5's Cloud Services integration layer. |
| Name | Version | Description |
|---|---|---|
@ckeditor/ckeditor5-build-classic
|
@ckeditor/ckeditor5-build-classic npm package badge | The classic editor build. |
@ckeditor/ckeditor5-build-inline
|
@ckeditor/ckeditor5-build-inline npm package badge | The inline editor build. |
@ckeditor/ckeditor5-build-balloon
|
@ckeditor/ckeditor5-build-balloon npm package badge | The balloon editor (Medium-like) build. |
@ckeditor/ckeditor5-build-balloon-block
|
@ckeditor/ckeditor5-build-balloon-block npm package badge | The balloon editor with a block toolbar (Slack–like) build. |
@ckeditor/ckeditor5-build-decoupled-document
|
@ckeditor/ckeditor5-build-decoupled-document npm package badge | The document editor build, featuring the decoupled UI editor implementation. |
| Name | Version | Description |
|---|---|---|
@ckeditor/ckeditor5-editor-classic
|
@ckeditor/ckeditor5-editor-classic npm package badge | The classic editor implementation. |
@ckeditor/ckeditor5-editor-inline
|
@ckeditor/ckeditor5-editor-inline npm package badge | The inline editor implementation. |
@ckeditor/ckeditor5-editor-balloon
|
@ckeditor/ckeditor5-editor-balloon npm package badge | The balloon editor (Medium-like) implementation. |
@ckeditor/ckeditor5-editor-decoupled
|
@ckeditor/ckeditor5-editor-decoupled npm package badge | The editor implementation with a decoupled UI. |
| Name | Version | Description |
|---|---|---|
@ckeditor/ckeditor5-theme-lark
|
@ckeditor/ckeditor5-theme-lark npm package badge | The Lark theme. |
Licensed under the terms of GNU General Public License Version 2 or later. For full details about the license, please check the LICENSE.md file or https://ckeditor.com/legal/ckeditor-oss-license.