CDN Quick Start
Get started instantly by loading MultipleUpload from a CDN. No build tools required.
Drag & drop files here
<!-- Add to your HTML head --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/multipleupload@latest/dist/multipleupload.min.css" /> <!-- Add before closing body tag --> <script src="https://cdn.jsdelivr.net/npm/multipleupload@latest/dist/multipleupload.min.js"></script>
// Ready to use after including the CDN scripts
var uploader = new MultipleUpload(document.getElementById('myUploader'), {
uploadUrl: '/api/upload'
});
The no-build route
A script tag and a stylesheet, then construct against a container. Nothing to install and no bundler step, which is what makes this the fastest way to evaluate the component — or to use it in a page that has no build pipeline at all.
Pin the version, and mind the licence path
An unpinned CDN URL means your page changes when the package does; pin it and upgrade deliberately. And note that the licence is resolved relative to the script's own location, so a CDN-hosted runtime with a self-hosted licence needs window.__MULTIPLEUPLOAD_LICENSE_URL__ set before the script tag.