mindtrex-editor

1.0.25-beta-development • Public • Published

A custom CKEditor build from CKEditor 5 classic editor

enter image description here

Quick start

First, install the build from npm: npm install --save mindtrex-editor

And use it in your website:

<div id="editor">
	<p>This is the editor content.</p>
</div>

<script src="./node_modules/mindtrex-editor/build/ckeditor.js"></script>

<script>
	MindtrexEditor.create(document.querySelector('#editor'))
		.then((editor) => {
			window.editor = editor
		})
		.catch((error) => {
			console.error('There was a problem initializing the editor.', error)
		})
</script>

Or in your JavaScript application:

import MindtrexEditor from 'mindtrex-editor'

MindtrexEditor.create(document.querySelector('#editor'))
	.then((editor) => {
		window.editor = editor
	})
	.catch((error) => {
		console.error('There was a problem initializing the editor.', error)
	})

Note: If you are planning to integrate CKEditor 5 deep into your application, it is actually more convenient and recommended to install and import the source modules directly (like it happens in ckeditor.js). Read more in the Advanced setup guide.

License

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.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.25-beta-development4latest

Version History

VersionDownloads (Last 7 Days)Published
1.0.25-beta-development4
1.0.24-beta-development0
1.0.23-beta-development0
1.0.22-beta-development0
1.0.21-beta-development0
1.0.20-beta-development0
1.0.19-beta-development0
1.0.18-beta-development0
1.0.17-beta-development1
1.0.16-beta-development0
1.0.15-beta-development0
1.0.14-beta-development0
1.0.13-beta-development0
1.0.12-beta0
1.0.11-beta0
1.0.10-beta0
1.0.9-beta0
1.0.8-beta0
1.0.7-beta0
1.0.80
1.0.7-beta60
1.0.7-beta50
1.0.7-beta40
1.0.7-beta30
1.0.7-beta20
1.0.7-beta10
1.0.70
1.0.60
1.0.50
1.0.40
1.0.30
1.0.20
1.0.10
1.0.00

Package Sidebar

Install

npm i mindtrex-editor

Weekly Downloads

1

Version

1.0.25-beta-development

License

MIT

Unpacked Size

6.72 MB

Total Files

67

Last publish

Collaborators

  • ichwn