Works with any backend npm install Zero dependencies

Download

Get MultipleUpload via npm, CDN, or direct download.

Starter Package

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/ with multipleupload.js, multipleupload.css, and multipleupload.d.ts
  • docs/ with Getting Started, API Reference, and Demo Guide pages
  • demos/ with overview, chunked, validation, image pipeline, and events examples
  • README.md for 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/dist/multipleupload.css';

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 runtime
  • multipleupload.css — Default styles with CSS variable theming
  • multipleupload.d.ts — TypeScript type definitions
  • docs/ — Offline Getting Started, API Reference, and Demo Guide pages
  • demos/ — Five standalone starter demos that mirror the website starter pack