Gathering detailed insights and metrics for quill-image-upload
Gathering detailed insights and metrics for quill-image-upload
Gathering detailed insights and metrics for quill-image-upload
Gathering detailed insights and metrics for quill-image-upload
quill-image-uploader
A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded
quill-image-extend-module
plugin for vue-quill-editor to upload image
quill-image-uploader-ts
A TS library to upload images in the quill editor to the server instead of being base64 encoded
quill-upload
Handler Upload for Quill
A module for Quill rich text editor to upload images to be selected from toolbar editor.
npm install quill-image-upload
Typescript
Module System
Node Version
NPM Version
70.7
Supply Chain
90.3
Quality
77.1
Maintenance
50
Vulnerability
100
License
JavaScript (93.9%)
Shell (6.1%)
Total Downloads
168,690
Last Day
36
Last Week
607
Last Month
2,192
Last Year
21,918
107 Stars
13 Commits
42 Forks
5 Watchers
1 Branches
3 Contributors
Updated on Mar 19, 2025
Minified
Minified + Gzipped
Latest Version
0.1.3
Package Id
quill-image-upload@0.1.3
Unpacked Size
68.14 kB
Size
18.93 kB
File Count
8
NPM Version
6.4.1
Node Version
8.11.3
Cumulative downloads
Total Downloads
Last Day
80%
36
Compared to previous day
Last Week
-4%
607
Compared to previous week
Last Month
29.9%
2,192
Compared to previous month
Last Year
-1.1%
21,918
Compared to previous year
1
4
A module for Quill rich text editor to upload images to be selected from toolbar editor.
1import Quill from 'quill'; 2import { ImageUpload } from 'quill-image-upload'; 3 4Quill.register('modules/imageUpload', ImageUpload); 5 6const quill = new Quill(editor, { 7 // ... 8 modules: { 9 // ... 10 imageUpload: { 11 url: '', // server url. If the url is empty then the base64 returns 12 method: 'POST', // change query method, default 'POST' 13 name: 'image', // custom form name 14 withCredentials: false, // withCredentials 15 headers: {}, // add custom headers, example { token: 'your-token'} 16 csrf: { token: 'token', hash: '' }, // add custom CSRF 17 customUploader: () => {}, // add custom uploader 18 // personalize successful callback and call next function to insert new url to the editor 19 callbackOK: (serverResponse, next) => { 20 next(serverResponse); 21 }, 22 // personalize failed callback 23 callbackKO: serverError => { 24 alert(serverError); 25 }, 26 // optional 27 // add callback when a image have been chosen 28 checkBeforeSend: (file, next) => { 29 console.log(file); 30 next(file); // go back to component and send to the server 31 } 32 } 33 } 34});
Copy image-upload.min.js into your web root or include from node_modules
1<script src="/node_modules/quill-image-upload/image-upload.min.js"></script>
1var quill = new Quill(editor, { 2 // ... 3 modules: { 4 // ... 5 imageUpload: { 6 url: '', // server url. If the url is empty then the base64 returns 7 method: 'POST', // change query method, default 'POST' 8 name: 'image', // custom form name 9 withCredentials: false, // withCredentials 10 headers: {}, // add custom headers, example { token: 'your-token'} 11 // personalize successful callback and call next function to insert new url to the editor 12 callbackOK: (serverResponse, next) => { 13 next(serverResponse); 14 }, 15 // personalize failed callback 16 callbackKO: serverError => { 17 alert(serverError); 18 } 19 } 20 } 21});
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 3/9 approved changesets -- score normalized to 3
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
security policy file not detected
Details
Reason
license 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
37 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