Get MultipleUpload via npm, CDN, or direct download.
The direct download now includes the production build, offline HTML documentation, an API reference, and five standalone demos you can browse online or unzip into your own project.
dist/ with multipleupload.js, multipleupload.css, and multipleupload.d.tsdocs/ with Getting Started, API Reference, and Demo Guide pagesdemos/ with overview, chunked, validation, image pipeline, and events examplesREADME.md for npm and bundler-oriented usage notesInstall via npm for use with bundlers like webpack, Vite, or Rollup.
npm install multipleupload
Then import in your project:
import { MultipleUpload } from 'multipleupload';
import 'multipleupload/dist/multipleupload.css';
Load directly from unpkg. No build step required.
<!-- CSS -->
<link rel="stylesheet" href="https://unpkg.com/multipleupload/dist/multipleupload.css">
<!-- JS -->
<script src="https://unpkg.com/multipleupload/dist/multipleupload.js"></script>
Download the latest release as a ZIP file and include the files manually in your project, with offline docs and starter demos included.
The ZIP contains the production files plus a browsable docs/ folder and a copy-paste-ready demos/ folder.
multipleupload.js — The production uploader runtimemultipleupload.css — Default styles with CSS variable themingmultipleupload.d.ts — TypeScript type definitionsdocs/ — Offline Getting Started, API Reference, and Demo Guide pagesdemos/ — Five standalone starter demos that mirror the website starter pack