Gathering detailed insights and metrics for quill-image-uploader
Gathering detailed insights and metrics for quill-image-uploader
Gathering detailed insights and metrics for quill-image-uploader
Gathering detailed insights and metrics for quill-image-uploader
quill-image-uploader-ts
A TS library to upload images in the quill editor to the server instead of being base64 encoded
@writergate/quill-image-uploader-nextjs
A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded that supports NextJS
quill-upload
Handler Upload for Quill
react-quill-image-uploader
a plugin for react-quill which can upload multi image and remember the image url histroy
A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded
npm install quill-image-uploader
Typescript
Module System
Node Version
NPM Version
94.4
Supply Chain
92.7
Quality
75.1
Maintenance
50
Vulnerability
100
License
JavaScript (86.58%)
HTML (9.02%)
CSS (4.4%)
Total Downloads
3,067,261
Last Day
2,547
Last Week
20,297
Last Month
89,940
Last Year
1,036,613
MIT License
259 Stars
87 Commits
103 Forks
5 Watchers
2 Branches
6 Contributors
Updated on Apr 29, 2025
Minified
Minified + Gzipped
Latest Version
1.3.0
Package Id
quill-image-uploader@1.3.0
Unpacked Size
278.05 kB
Size
227.50 kB
File Count
14
NPM Version
8.5.5
Node Version
16.15.0
Published on
May 11, 2023
Cumulative downloads
Total Downloads
Last Day
-39.6%
2,547
Compared to previous day
Last Week
3.8%
20,297
Compared to previous week
Last Month
-8%
89,940
Compared to previous month
Last Year
14.1%
1,036,613
Compared to previous year
1
18
A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded. Adds a button to the toolbar for users to click, also handles drag,dropped and pasted images.
Install with npm:
1npm install quill-image-uploader --save
1import Quill from "quill"; 2import ImageUploader from "quill-image-uploader"; 3 4import 'quill-image-uploader/dist/quill.imageUploader.min.css'; 5 6Quill.register("modules/imageUploader", ImageUploader); 7 8const quill = new Quill(editor, { 9 // ... 10 modules: { 11 // ... 12 imageUploader: { 13 upload: (file) => { 14 return new Promise((resolve, reject) => { 15 setTimeout(() => { 16 resolve( 17 "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/JavaScript-logo.png/480px-JavaScript-logo.png" 18 ); 19 }, 3500); 20 }); 21 }, 22 }, 23 }, 24});
React Example on CodeSandbox
Example on CodeSandbox
1// A link to quill.js 2<script src="/dist/quill.js"></script> 3<script src="/dist/quill.imageUploader.min.js"></script> 4 5Quill.register("modules/imageUploader", ImageUploader); 6 7var quill = new Quill(editor, { 8 // ... 9 modules: { 10 // ... 11 imageUploader: { 12 upload: file => { 13 return new Promise((resolve, reject) => { 14 setTimeout(() => { 15 resolve( 16 "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/JavaScript-logo.png/480px-JavaScript-logo.png" 17 ); 18 }, 3500); 19 }); 20 } 21 } 22 } 23});
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 1/4 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
project is not fuzzed
Details
Reason
security policy file not detected
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
59 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-04-21
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