Gathering detailed insights and metrics for @coderedm0nztr/ckeditor5-build-classic-extra-plugins
Gathering detailed insights and metrics for @coderedm0nztr/ckeditor5-build-classic-extra-plugins
npm install @coderedm0nztr/ckeditor5-build-classic-extra-plugins
Typescript
Module System
Node Version
NPM Version
73.5
Supply Chain
89.5
Quality
80.3
Maintenance
50
Vulnerability
69.2
License
JavaScript (37.79%)
Rich Text Format (33.73%)
TypeScript (15.99%)
HTML (11.85%)
CSS (0.63%)
Shell (0.01%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
9,956
Last Day
1
Last Week
2
Last Month
76
Last Year
1,569
NOASSERTION License
9,890 Stars
60,158 Commits
3,728 Forks
152 Watchers
420 Branches
150 Contributors
Updated on Feb 22, 2025
Minified
Minified + Gzipped
Latest Version
41.2.4
Package Id
@coderedm0nztr/ckeditor5-build-classic-extra-plugins@41.2.4
Unpacked Size
9.28 MB
Size
2.03 MB
File Count
76
NPM Version
9.8.0
Node Version
18.12.1
Published on
Apr 17, 2024
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-60%
2
Compared to previous week
Last Month
1.3%
76
Compared to previous month
Last Year
-54.7%
1,569
Compared to previous year
25
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:
1npm install --save @ckeditor/ckeditor5-build-classic
And use it in your website:
1<div id="editor"> 2 <p>This is the editor content.</p> 3</div> 4<script src="./node_modules/@ckeditor/ckeditor5-build-classic/build/ckeditor.js"></script> 5<script> 6 ClassicEditor 7 .create( document.querySelector( '#editor' ) ) 8 .then( editor => { 9 window.editor = editor; 10 } ) 11 .catch( error => { 12 console.error( 'There was a problem initializing the editor.', error ); 13 } ); 14</script>
Or in your JavaScript application:
1import ClassicEditor from '@ckeditor/ckeditor5-build-classic'; 2 3// Or using the CommonJS version: 4// const ClassicEditor = require( '@ckeditor/ckeditor5-build-classic' ); 5 6ClassicEditor 7 .create( document.querySelector( '#editor' ) ) 8 .then( editor => { 9 window.editor = editor; 10 } ) 11 .catch( error => { 12 console.error( 'There was a problem initializing the editor.', error ); 13 } );
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.
No vulnerabilities found.
Reason
all changesets reviewed
Reason
30 commit(s) and 18 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
license file detected
Details
Reason
SAST tool detected but not run on all commits
Details
Reason
branch protection is not maximal on development and all release branches
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-02-17
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More