
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@yazeedloonat/ckeditor5-build-classic-sv
Advanced tools
A customized version of the classic editor build of CKEditor 5.
The classic editor build for CKEditor 5. Read more about the classic editor build and see the demo.
See:
First, install the build from npm:
npm install --save @yazeedloonat/ckeditor5-build-classic-sv
And use it in your website:
<div id="editor">
<p>This is the editor content.</p>
</div>
<script src="./node_modules/@yazeedloonat/ckeditor5-build-classic-sv/build/ckeditor.js"></script>
<script>
ClassicEditor
.create( document.querySelector( '#editor' ) )
.then( editor => {
window.editor = editor;
} )
.catch( err => {
console.error( err.stack );
} );
</script>
Or in your JavaScript application:
import ClassicEditor from '@yazeedloonat/ckeditor5-build-classic-sv';
// Or using the CommonJS version:
// const ClassicEditor = require( '@yazeedloonat/ckeditor5-build-classic-sv' );
ClassicEditor
.create( document.querySelector( '#editor' ) )
.then( editor => {
window.editor = editor;
} )
.catch( err => {
console.error( err.stack );
} );
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.
FAQs
A customized version of the classic editor build of CKEditor 5.
The npm package @yazeedloonat/ckeditor5-build-classic-sv receives a total of 0 weekly downloads. As such, @yazeedloonat/ckeditor5-build-classic-sv popularity was classified as not popular.
We found that @yazeedloonat/ckeditor5-build-classic-sv demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.