# @uppy/transloadit

> The Transloadit plugin can be used to upload files to Transloadit for all kinds of processing, such as transcoding video, resizing images, zipping/unzipping, and more

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

## Install

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

## 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 | 162.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 30984 |
| Maintainers | kvz, tim-kos, mifi, uppydev |
| Keywords | file uploader, transloadit, file encoding, encoding, file processing, video encoding, crop, resize, watermark, uppy, uppy-plugin |

## Links

- npm: https://www.npmjs.com/package/@uppy/transloadit
- 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/transloadit

## Dependencies (3)

- [@uppy/tus](https://npm.io/package/@uppy/tus.md) ^6.0.0
- [component-emitter](https://npm.io/package/component-emitter.md) ^2.0.0
- [@transloadit/types](https://npm.io/package/@transloadit/types.md) ^4.3.1

## Alternatives

- [flatbuffers](https://npm.io/package/flatbuffers.md) — 6.0M weekly downloads
- [jwt-simple](https://npm.io/package/jwt-simple.md) — 259.5K weekly downloads
- [@exodus/patch-broken-hermes-typed-arrays](https://npm.io/package/@exodus/patch-broken-hermes-typed-arrays.md) — 28.5K weekly downloads
- [@native-to-anchor/buffer-layout](https://npm.io/package/@native-to-anchor/buffer-layout.md) — 12.2K weekly downloads
- [binary-parser-encoder](https://npm.io/package/binary-parser-encoder.md) — 5.3K weekly downloads

## Recent versions

- 6.0.0 (latest) — 2026-08-26
- 3.8.1 (v3) — 2024-08-21
- 4.0.0-beta.10 (next) — 2024-06-27
- 5.5.1 — 2026-03-25
- 5.5.0 — 2026-02-03
- 5.4.0 — 2025-12-04
- 5.3.0 — 2025-12-02
- 5.2.0 — 2025-10-28
- 5.1.3 — 2025-10-17
- 5.1.2 — 2025-10-03
- 5.1.1 — 2025-10-02
- 5.1.0 — 2025-10-01
- 5.0.1 — 2025-09-16
- 5.0.0 — 2025-08-22
- 4.3.3 — 2025-08-07
- … 143 more at https://npm.io/package/@uppy/transloadit/versions

## README

# @uppy/transloadit

<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/transloadit.svg?style=flat-square)](https://www.npmjs.com/package/@uppy/transloadit)
![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)

The Transloadit plugin can be used to upload files to Transloadit for all kinds
of processing, such as transcoding video, resizing images, zipping/unzipping,
[and more](https://transloadit.com/services/).

Uppy owns the open-source browser upload experience. Transloadit is the managed
backend that receives those uploads and runs the processing workflow. This
plugin connects the two; Uppy can also be used with other upload destinations.

[Run the unsigned local demo →](https://github.com/transloadit/uppy/tree/main/examples/transloadit)
(test use only). For production, follow the server-signed integration guide.

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

## Example

```js
import Uppy from '@uppy/core'
import Transloadit from '@uppy/transloadit'

const uppy = new Uppy().use(Transloadit, {
  async assemblyOptions() {
    const response = await fetch('/api/transloadit-params', { method: 'POST' })
    if (!response.ok) {
      throw new Error(`Could not prepare the upload (${response.status})`)
    }
    return response.json()
  },
})
```

Generate the returned `params` and `signature` on your server. Never include
your Transloadit Auth Secret in browser code. See the canonical
[JavaScript, React, Next.js, Vue, and Angular guide](https://uppy.io/docs/guides/uppy-transloadit/)
for complete examples.

## Installation

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

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/transloadit).

## License

[The MIT License](./LICENSE).

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