New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

uppy

Package Overview
Dependencies
Maintainers
4
Versions
282
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uppy

Almost as cute as a Puppy :dog:

  • 0.8.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18K
decreased by-3.96%
Maintainers
4
Weekly downloads
 
Created
Source

Uppy

Uppy logo — a puppy superman

Build Status

Uppy is (going to be) a cool JavaScript file uploader that fetches files for you from local disk, Google Drive, Dropbox, Instagram, remote URLs, cameras and other exciting locations, and then uploads them to wherever you want. Uppy is being developed by the Transloadit team because we want file uploading experience to be better — both for users and developers.

Check out uppy.io for docs, API, examples and stats.

Features

  • Lightweight / easy on dependencies
  • Usable as a bundle straight from a CDN as well as a module to import
  • Resumable file uploads via the open tus standard
  • Uppy speaks multiple languages (i18n support)
  • Works great with file encoding and processing backends, such as Transloadit
  • Small core, modular plugin-based architecture.
  • Cute as a puppy :dog:, also accepts cat pictures

Demo

Uppy UI Demo: modal dialog with a few selected files and an upload button

Usage

:warning: Don’t use Uppy in production just yet, we’re working on it

It’s easy to start using Uppy, we recommend installing from npm with npm install uppy and then:

import * as Uppy from 'uppy'

const uppy = new Uppy.Core({wait: false})
const files = uppy
  .use(Uppy.plugins.DragDrop, {target: '#upload-target'})
  .use(Uppy.plugins.Tus10, {endpoint: 'http://master.tus.io:8080/files/'})
  .run()

But if you like, you can also use a pre-built bundle, in that case Uppy will attach itself to the global window object:

<script src="uppy.min.js"></script>
<script>
var uppy = new Uppy.Core({locales: Uppy.locales.ru_RU, debug: true})
  uppy.use(Uppy.plugins.DragDrop, {target: '.UppyDragDrop'})
  uppy.use(Uppy.plugins.Tus10, {endpoint: 'http://master.tus.io:3020/files/'})
  uppy.run()
</script>

Browser Support

Sauce Test Status

Note: we aim to support IE10+ and recent versions of Safari, Edge, Chrome, Firefox and Opera. IE6 on the chart above means we recommend setting Uppy to target a <form> element, so when Uppy has not yet loaded or is not supported, upload still works. Even on the refrigerator browser. Or, yes, IE6.

Contributions are welcome

License

The MIT License.

FAQs

Package last updated on 25 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc