Gathering detailed insights and metrics for sedestral-quill
Gathering detailed insights and metrics for sedestral-quill
Gathering detailed insights and metrics for sedestral-quill
Gathering detailed insights and metrics for sedestral-quill
Quill is a modern WYSIWYG editor built for compatibility and extensibility
npm install sedestral-quill
Typescript
Module System
Node Version
NPM Version
75.9
Supply Chain
98.7
Quality
75
Maintenance
100
Vulnerability
98.9
License
TypeScript (64.09%)
MDX (18.65%)
JavaScript (8.75%)
SCSS (4.59%)
Stylus (1.87%)
CSS (1.4%)
HTML (0.59%)
Shell (0.06%)
Total Downloads
1,147
Last Day
1
Last Week
2
Last Month
24
Last Year
146
BSD-3-Clause License
45,634 Stars
5,742 Commits
3,518 Forks
489 Watchers
15 Branches
145 Contributors
Updated on Jul 03, 2025
Minified
Minified + Gzipped
Latest Version
2.0.0-dev.4-8
Package Id
sedestral-quill@2.0.0-dev.4-8
Unpacked Size
1.31 MB
Size
249.00 kB
File Count
143
NPM Version
8.1.0
Node Version
16.13.0
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-50%
2
Compared to previous week
Last Month
-41.5%
24
Compared to previous month
Last Year
0%
146
Compared to previous year
36
Note: This branch and README covers the upcoming 2.0 release. View 1.x docs here.
Quickstart • Documentation • Development • Contributing • Interactive Playground
Quill is a modern rich text editor built for compatibility and extensibility. It was created by Jason Chen and Byron Milligan and actively maintained by Slab.
To get started, check out https://quilljs.com/ for documentation, guides, and live demos!
Instantiate a new Quill object with a css selector for the div that should become the editor.
1<!-- Include Quill stylesheet --> 2<link href="https://cdn.quilljs.com/1.0.0/quill.snow.css" rel="stylesheet" /> 3 4<!-- Create the toolbar container --> 5<div id="toolbar"> 6 <button class="ql-bold">Bold</button> 7 <button class="ql-italic">Italic</button> 8</div> 9 10<!-- Create the editor container --> 11<div id="editor"> 12 <p>Hello World!</p> 13</div> 14 15<!-- Include the Quill library --> 16<script src="https://cdn.quilljs.com/1.0.0/quill.js"></script> 17 18<!-- Initialize Quill editor --> 19<script> 20 var editor = new Quill('#editor', { 21 modules: { toolbar: '#toolbar' }, 22 theme: 'snow', 23 }); 24</script>
Take a look at the Quill website for more documentation, guides and live playground!
npm install quill
1<!-- Main Quill library --> 2<script src="//cdn.quilljs.com/1.0.0/quill.js"></script> 3<script src="//cdn.quilljs.com/1.0.0/quill.min.js"></script> 4 5<!-- Theme included stylesheets --> 6<link href="//cdn.quilljs.com/1.0.0/quill.snow.css" rel="stylesheet" /> 7<link href="//cdn.quilljs.com/1.0.0/quill.bubble.css" rel="stylesheet" /> 8 9<!-- Core build with no theme, formatting, non-essential modules --> 10<link href="//cdn.quilljs.com/1.0.0/quill.core.css" rel="stylesheet" /> 11<script src="//cdn.quilljs.com/1.0.0/quill.core.js"></script>
Get help or stay up to date.
BSD 3-clause
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 5
Details
Reason
Found 6/29 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
42 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-23
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