Download
Get MultipleUpload via npm, CDN, or direct download.
Download the full starter kit
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.
Included in the ZIP
dist/withmultipleupload.js,multipleupload.css, andmultipleupload.d.tsdocs/with Getting Started, API Reference, and Demo Guide pagesdemos/with overview, chunked, validation, image pipeline, and events examplesREADME.mdfor npm and bundler-oriented usage notes
npm
Install 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/multipleupload.css'; CommonJS works from the same install — const MultipleUpload = require('multipleupload') (destructuring resolves too). Both entry points share one engine build, so bundlers never ship two copies. Types resolve under node, node16 and bundler resolution.
CDN
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> Direct Download
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.
What's Included
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