# @uppy/react

> React component wrappers around Uppy's official UI plugins.

Latest version **6.0.0** (published 2026-08-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install @uppy/react
pnpm add @uppy/react
yarn add @uppy/react
bun add @uppy/react
```

## Health

**Score 65/100 (B)** — status: active.

Positive: esm support; no vulnerabilities; recently updated; high maintenance score; popular repo.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 6.0.0 |
| Published | 2026-08-26 |
| First published | 2018-06-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Dependencies | 3 |
| Unpacked size | 111.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 30970 |
| Maintainers | kvz, tim-kos, mifi, uppydev |
| Keywords | file uploader, uppy, uppy-plugin, react, react-components |

## Links

- npm: https://www.npmjs.com/package/@uppy/react
- Repository: https://github.com/transloadit/uppy
- Homepage: https://uppy.io
- Issues: https://github.com/transloadit/uppy/issues
- npm.io page: https://npm.io/package/@uppy/react

## Dependencies (3)

- [preact](https://npm.io/package/preact.md) ^10.29.2
- [@uppy/components](https://npm.io/package/@uppy/components.md) ^2.0.0
- [use-sync-external-store](https://npm.io/package/use-sync-external-store.md) ^1.6.0

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 6.0.0 (latest) — 2026-08-26
- 4.0.0-beta.8 (next) — 2024-06-27
- 5.2.0 — 2026-02-03
- 5.1.1 — 2025-10-30
- 5.1.0 — 2025-09-26
- 5.0.3 — 2025-09-16
- 5.0.2 — 2025-08-28
- 5.0.1 — 2025-08-27
- 5.0.0 — 2025-08-22
- 4.5.2 — 2025-08-01
- 4.5.1 — 2025-07-29
- 4.5.0 — 2025-07-29
- 4.4.0 — 2025-06-30
- 4.3.0 — 2025-06-02
- 4.2.3 — 2025-04-08
- … 117 more at https://npm.io/package/@uppy/react/versions

## README

# @uppy/react

<img src="https://uppy.io/img/logo.svg" width="120" alt="Uppy logo: a smiling puppy above a pink upwards arrow" align="right">

[![npm version](https://img.shields.io/npm/v/@uppy/react.svg?style=flat-square)](https://www.npmjs.com/package/@uppy/react)
![CI status for Uppy tests](https://github.com/transloadit/uppy/workflows/CI/badge.svg)
![CI status for Companion tests](https://github.com/transloadit/uppy/workflows/Companion/badge.svg)
![CI status for browser tests](https://github.com/transloadit/uppy/workflows/End-to-end%20tests/badge.svg)

React component wrappers around Uppy’s officially maintained UI plugins.

Uppy is being developed by the folks at [Transloadit](https://transloadit.com),
a versatile file encoding service.

## Example

<!-- eslint-disable react/state-in-constructor -->

```jsx
/** @jsx React */
import React from 'react'
import Uppy from '@uppy/core'
import DashboardModal from '@uppy/react/dashboard-modal'

const uppy = new Uppy()

class Example extends React.Component {
  state = { open: false }

  render() {
    const { open } = this.state
    return (
      <DashboardModal
        uppy={uppy}
        open={open}
        onRequestClose={this.handleClose}
      />
    )
  }
  // ..snip..
}
```

## Installation

```bash
$ npm install @uppy/react
```

Alternatively, you can also use this plugin in a pre-built bundle from
Transloadit’s CDN: Smart CDN. In that case `Uppy` will attach itself to the
global `window.Uppy` object. See the
[main Uppy documentation](https://uppy.io/docs/#Installation) for instructions.

## Documentation

Documentation for this plugin can be found on the
[Uppy website](https://uppy.io/docs/react).

For a managed processing backend, follow the canonical
[React + Uppy + Transloadit guide](https://uppy.io/docs/guides/uppy-transloadit/#react).

## License

[The MIT License](./LICENSE).

---
_Source: https://npm.io/package/@uppy/react · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
