0.0.2 • Published 6 years ago

ckeditor5-build-blueberry v0.0.2

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
6 years ago

CKEditor 5 blueberry editor

NPM

The tiny CKEditor 5 classic editor base ckeditor5-build-classic.

Feature

  • 💧Only necessary menus
  • 🔥Can work in the project with parcel

Quick start

First, install the build from npm:

npm i --save ckeditor5-build-blueberry

And use it:

import BerryEditor from 'ckeditor5-build-blueberry';

BerryEditor
	.create( document.querySelector( '#editor' ) )
	.then( editor => {
		window.editor = editor;
	} )
	.catch( err => {
		console.error( err.stack );
	} );

Verify with parcel

npm i -g parcel-bundler

parcel sample/index-parcel.html

Issue: https://github.com/ckeditor/ckeditor5/issues/986