npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ckeditor5-build-full

v36.0.0

Published

A ready-to-use build of CKEditor 5 Classic Editor with 51 plugins and a preconfigured toolbar.

Downloads

1,094

Readme

ckeditor5-build-full

npm

A ready-to-use build of CKEditor 5 Classic Editor with 51 plugins and a preconfigured toolbar. No bundler configuration, no CSS import — install and use.

Installation

npm install ckeditor5-build-full

The package major version mirrors the CKEditor 5 major version it bundles. To stay on a specific line, install it by major:

| Package | CKEditor 5 | npm tag | | ------- | ---------- | -------- | | 36.x | 36.0.1 | latest | | 35.x | 35.4.0 | v35 | | 34.x | 34.2.0 | v34 | | 33.x | 33.0.0 | v33 | | 32.x | 32.0.0 | v32 | | 31.x | 31.1.0 | v31 | | 30.x | 30.0.0 | v30 | | 29.x | 29.2.0 | v29 | | 28.x | 28.0.0 | v28 | | 27.x | 27.1.0 | v27 | | 26.x | 26.0.0 | v26 | | 25.x | 25.0.0 | v25 |

npm install ckeditor5-build-full@^36

Because the major version is reserved for the CKEditor version, breaking changes to this package ship in minor releases. Pin the minor (for example ~36.0.0) if you need strict stability.

Usage

React

import { CKEditor } from '@ckeditor/ckeditor5-react'
import FullEditor from 'ckeditor5-build-full'

export default function Editor() {
  return (
    <CKEditor
      editor={FullEditor}
      onChange={(event, editor) => console.log(editor.getData())}
    />
  )
}

Vanilla JS

import FullEditor from 'ckeditor5-build-full'

FullEditor.create(document.querySelector('#editor'))
  .then(editor => { window.editor = editor })
  .catch(console.error)

Browser

<script src="https://unpkg.com/ckeditor5-build-full@^36/dist/index.umd.js"></script>
<script>
  FullEditor.create(document.querySelector('#editor'))
</script>

Configuration

Pass a config object to override the defaults:

FullEditor.create(document.querySelector('#editor'), {
  toolbar: { items: ['bold', 'italic', 'link', '|', 'undo', 'redo'] },
  fontSize: { options: [12, 14, 16, 18] },
  language: 'en'
})

With React, use the config prop:

<CKEditor editor={FullEditor} config={{ toolbar: { items: ['bold', 'italic'] } }} />

See the CKEditor 5 configuration reference for all available options.

TypeScript

Type declarations are bundled — no @types package needed.

import FullEditor from 'ckeditor5-build-full'
import type { FullEditorConfig } from 'ckeditor5-build-full'

const config: FullEditorConfig = {
  toolbar: { items: ['bold', 'italic', 'link'] },
  language: 'en'
}

Exported types: FullEditorConfig, FullEditorInstance, FullEditorStatic, ToolbarItem, ImageStyle.

On lines bundling a CKEditor release that predates upstream TypeScript support, these types are maintained by this package and cover the public surface only — configuration and the editor instance. CKEditor's internal APIs (model, view, conversion) are untyped.

Troubleshooting

The source element is empty after destroy()

Since CKEditor 5 v35 (this package's 35.x), destroying the editor no longer writes getData() back into the element it was created from — the element is left empty. If you relied on that, for example when the editor was created over a <textarea> inside a form, opt back in:

FullEditor.create(document.querySelector('#editor'), {
  updateSourceElementOnDestroy: true
})

The data output is not sanitized the way the editing view is, so only enable this if you control the content that reaches it.

ckeditor-duplicated-modules

Your app is loading CKEditor 5 from two places — typically this build plus a direct dependency on @ckeditor/ckeditor5-*.

Use one or the other. Either rely solely on this build, or drop it and assemble your own custom build. Mixing them is not supported, even when the versions match, because this build already bundles its own copy of CKEditor.

Included plugins

Alignment, Autoformat, Autosave, BlockQuote, Bold, CKFinder, Clipboard, CloudServices, Code, CodeBlock, EasyImage, Essentials, Font, Heading, Highlight, HorizontalLine, HtmlEmbed, Image, ImageCaption, ImageResize, ImageStyle, ImageTextAlternative, ImageToolbar, ImageUpload, Indent, Italic, Link, List, MediaEmbed, Mention, PageBreak, Paragraph, PasteFromOffice, RemoveFormat, SimpleUploadAdapter, SpecialCharacters, SpecialCharactersEssentials, StandardEditingMode, Strikethrough, Subscript, Superscript, Table, TableCaption, TableCellProperties, TableProperties, TableToolbar, TextPartLanguage, TextTransformation, Underline, UploadAdapter, WordCount

License

GPL-2.0-or-later, matching upstream CKEditor 5. This build embeds CKEditor 5 source, so the published artifact carries the same license. A commercial license is available from CKEditor.