title: "Getting Started" type: docs permalink: docs/ alias: api/
Uppy is a sleek, modular file uploader that integrates seamlessly with any framework. It fetches files from local disk, Google Drive, Dropbox, Instagram, remote urls, cameras and other exciting locations, and then uploads them to the final destination. It’s fast, easy to use and lets you worry about more important problems than building a file uploader.
Uppy consists of a core module and various plugins for selecting, manipulating and uploading files. Here’s how it works:
const Uppy = require('uppy/lib/core')
const Dashboard = require('uppy/lib/plugins/Dashboard')
const Tus = require('uppy/lib/plugins/Tus')
const uppy = Uppy({ autoProceed: false })
.use(Dashboard, {
trigger: '#select-files'
})
.use(Tus, {endpoint: 'https://master.tus.io/files/'})
uppy.on('complete', (result) => {
console.log(`Upload complete! We’ve uploaded these files: ${result.successful}`)
})
Drag and drop, webcam, basic file manipulation (adding metadata), uploading via tus-resumable uploads or XHR/Multipart is all possible using just the Uppy client module.
Adding Uppy Server to the mix enables remote sources such as Instagram, Google Drive, Dropbox, and remote URLs. Uploads from remote sources are handled server-to-server, so a 5 GB video won’t be eating into your mobile data plan. Files are removed from Uppy Server after an upload is complete, or after a reasonable timeout. Access tokens also don’t stick around for long, for security reasons.
$ npm install uppy
We recommend installing from NPM and then using a module bundler such as Webpack, Browserify or Rollup.js.
Alternatively, you can also use a pre-built bundle from Transloadit's CDN: Edgly. In that case, Uppy
will attach itself to the global window.Uppy
object.
⚠️ The bundle currently consists of most Uppy plugins. This method is therefore not recommended for production, as your users will have to download all plugins, even if you are only using a few of them.
1. Add a script to the bottom of <body>
:
<script src="https://transloadit.edgly.net/releases/uppy/v0.25.0/dist/uppy.min.js"></script>
2. Add CSS to <head>
:
<link href="https://transloadit.edgly.net/releases/uppy/v0.25.0/dist/uppy.min.css" rel="stylesheet">
3. Initialize:
<script>
var uppy = Uppy.Core({ autoProceed: false })
uppy.use(Uppy.DragDrop, { target: '#drag-drop-area' })
uppy.use(Uppy.Tus, { endpoint: 'https://master.tus.io/files/' })
</script>
We currently aim to support IE10+ and recent versions of Safari, Edge, Chrome, Firefox and Opera.