![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
quill-audio-uploader
Advanced tools
A module for Quill rich text editor to allow audio to be uploaded to a server
A module for Quill rich text editor to add audio format and allow audio to be uploaded to a server.
Adds a button to the toolbar for users to click, also handles drag and dropped.
import Quill from 'quill';
import AudioUploader from 'quill-audio-uploader';
Quill.register('modules/audioUploader', AudioUploader);
const mp3UrlForMockResponse =
'https://cdn.realworld.to/project-files/tSJAUCsbD8aSDM7e8XN_AA/KFY6kUxGl8wPJF6EzchhEA-%E1%84%8B%E1%85%B5%E1%86%AF%E1%84%8B%E1%85%A5%E1%84%82%E1%85%A1%E1%84%89%E1%85%A7%E1%84%8B%E1%85%A3%E1%84%92%E1%85%A1%E1%86%B8%E1%84%82%E1%85%B5%E1%84%83%E1%85%A1.mp3';
const quill = new Quill('#editor-container', {
modules: {
toolbar: ['audio'],
audioUploader: {
upload: (file) =>
new Promise((resolve, reject) => {
setTimeout(() => resolve(mp3UrlForMockResponse), 2000);
})
}
},
theme: 'snow'
});
quill-audio-uploader is primarily distributed under the terms of the MIT license. See LICENSE for details.
This module was initial created by modifying the quill-image-uploader source code.
FAQs
A module for Quill rich text editor to allow audio to be uploaded to a server
The npm package quill-audio-uploader receives a total of 0 weekly downloads. As such, quill-audio-uploader popularity was classified as not popular.
We found that quill-audio-uploader 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.