![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@ckeditor/ckeditor5-build-multi-root
Advanced tools
The multi-root editor build of CKEditor 5 – the best browser-based rich text editor.
The multi-root editor build for CKEditor 5. Read more about the multi-root editor build and see the demo.
See:
First, install the build from npm:
npm install --save @ckeditor/ckeditor5-build-multi-root
And use it in your website:
<div id="toolbar"></div>
<div id="header">
<p>Content for header.</p>
</div>
<div id="content">
<p>Main editor content.</p>
</div>
<div class="boxes">
<div class="box box-left editor">
<div id="left-side">
<p>Content for left-side box.</p>
</div>
</div>
<div class="box box-right editor">
<div id="right-side">
<p>Content for right-side box.</p>
</div>
</div>
</div>
<script src="./node_modules/@ckeditor/ckeditor5-build-multi-root/build/ckeditor.js"></script>
<script>
MultiRootEditor
.create( {
header: document.getElementById( 'header' ),
content: document.getElementById( 'content' ),
leftSide: document.getElementById( 'left-side' ),
rightSide: document.getElementById( 'right-side' )
} )
.then( editor => {
window.editor = editor;
// Append toolbar to a proper container.
const toolbarContainer = document.getElementById( 'toolbar' );
toolbarContainer.appendChild( editor.ui.view.toolbar.element );
} )
.catch( error => {
console.error( 'There was a problem initializing the editor.', error );
} );
</script>
Or in your JavaScript application:
import MultiRootEditor from '@ckeditor/ckeditor5-build-multi-root';
// Or using the CommonJS version:
// const MultiRootEditor = require( '@ckeditor/ckeditor5-build-multi-root' );
MultiRootEditor
.create( {
header: document.getElementById( 'header' ),
content: document.getElementById( 'content' ),
leftSide: document.getElementById( 'left-side' ),
rightSide: document.getElementById( 'right-side' )
} )
.then( editor => {
window.editor = editor;
// Append toolbar to a proper container.
const toolbarContainer = document.getElementById( 'toolbar' );
toolbarContainer.appendChild( editor.ui.view.toolbar.element );
} )
.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.
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.
FAQs
The multi-root editor build of CKEditor 5 – the best browser-based rich text editor.
We found that @ckeditor/ckeditor5-build-multi-root demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.