Uppy logo: a smiling puppy above a pink upwards arrow

Uppy is a sleek, modular JavaScript file uploader that integrates seamlessly with any application. It’s fast, has a comprehensible API and lets you worry about more important problems than building a file uploader.

  • Fetch files from local disk, remote URLs, Google Drive, Dropbox, Box, Instagram or snap and record selfies with a camera
  • Preview and edit metadata with a nice interface
  • Upload to the final destination, optionally process/encode

Read the docs | Try Uppy

Developed by Transloadit

Uppy is being developed by the folks at Transloadit, a versatile API to handle any file in your app.

TestsCI status for Uppy testsCI status for Companion testsCI status for browser tests
DeploysCI status for CDN deploymentCI status for Companion deploymentCI status for website deployment

Example

Code used in the above example:

import Uppy from '@uppy/core'
import Dashboard from '@uppy/dashboard'
import RemoteSources from '@uppy/remote-sources'
import ImageEditor from '@uppy/image-editor'
import Webcam from '@uppy/webcam'
import Tus from '@uppy/tus'

const uppy = new Uppy()
  .use(Dashboard, { trigger: '#select-files' })
  .use(RemoteSources, { companionUrl: 'https://companion.uppy.io' })
  .use(Webcam)
  .use(ImageEditor)
  .use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
  .on('complete', (result) => {
    console.log('Upload result:', result)
  })

Try it online or read the docs for more details on how to use Uppy and its plugins.

Features

  • Lightweight, modular plugin-based architecture, light on dependencies ⚡
  • Resumable file uploads via the open tus standard, so large uploads survive network hiccups
  • Supports picking files from: Webcam, Dropbox, Box, Google Drive, Instagram, bypassing the user’s device where possible, syncing between servers directly via @uppy/companion
  • Works great with file encoding and processing backends, such as Transloadit, works great without (all you need is to roll your own Apache/Nginx/Node/FFmpeg/etc backend)
  • Sleek user interface ✨
  • Optional file recovery (after a browser crash) with Golden Retriever
  • Speaks several languages (i18n) 🌍
  • Built with accessibility in mind
  • Free for the world, forever (as in beer 🍺, pizza 🍕, and liberty 🗽)
  • Cute as a puppy, also accepts cat pictures 🐶

Installation

npm install @uppy/core @uppy/dashboard @uppy/tus

Add CSS uppy.min.css, either to your HTML page’s <head> or include in JS, if your bundler of choice supports it.

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 consists of most Uppy plugins, so this method is not recommended for production, as your users will have to download all plugins when you are likely using only a few.

<!-- 1. Add CSS to `<head>` -->
<link
  href="https://releases.transloadit.com/uppy/v4.0.5/uppy.min.css"
  rel="stylesheet"
/>

<!-- 2. Initialize -->
<div id="files-drag-drop"></div>
<script type="module">
  import {
    Uppy,
    Dashboard,
    Tus,
  } from 'https://releases.transloadit.com/uppy/v4.0.5/uppy.min.mjs'

  const uppy = new Uppy()
  uppy.use(Dashboard, { target: '#files-drag-drop' })
  uppy.use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
</script>

Documentation

  • Uppy — full list of options, methods and events
  • Plugins — list of Uppy plugins and their options
  • Companion — setting up and running a Companion instance, which adds support for Instagram, Dropbox, Box, Google Drive and remote URLs
  • React — components to integrate Uppy UI plugins with React apps
  • Architecture & Writing a Plugin — how to write a plugin for Uppy

Plugins

List of plugins and their common options

UI Elements

  • Dashboard — universal UI with previews, progress bars, metadata editor and all the cool stuff. Required for most UI plugins like Webcam and Instagram
  • Progress Bar — minimal progress bar that fills itself when upload progresses
  • Status Bar — more detailed progress, pause/resume/cancel buttons, percentage, speed, uploaded/total sizes (included by default with Dashboard)
  • Informer — send notifications like “smile” before taking a selfie or “upload failed” when all is lost (also included by default with Dashboard)

Sources

  • Drag & Drop — plain drag and drop area
  • File Input — even plainer “select files” button
  • Webcam — snap and record those selfies 📷
  • Google Drive — import files from Google Drive
  • Dropbox — import files from Dropbox
  • Box — import files from Box
  • Instagram — import images and videos from Instagram
  • Facebook — import images and videos from Facebook
  • OneDrive — import files from Microsoft OneDrive
  • Import From URL — import direct URLs from anywhere on the web

The ⓒ mark means that @uppy/companion, a server-side component, is needed for a plugin to work.

Destinations

  • Tus — resumable uploads via the open tus standard
  • XHR Upload — regular uploads for any backend out there (like Apache, Nginx)
  • AWS S3 — plain upload to AWS S3 or compatible services
  • AWS S3 Multipart — S3-style “Multipart” upload to AWS or compatible services

File Processing

Miscellaneous

  • Golden Retriever — restores files after a browser crash, like it’s nothing
  • Thumbnail Generator — generates image previews (included by default with Dashboard)
  • Form — collects metadata from <form> right before an Uppy upload, then optionally appends results back to the form
  • Redux — for your emerging time traveling needs

React

  • React — components to integrate Uppy UI plugins with React apps
  • React Native — basic Uppy component for React Native with Expo

Browser Support

We aim to support recent versions of Chrome, Firefox, and Safari.

FAQ

Why not use <input type="file">?

Having no JavaScript beats having a lot of it, so that’s a fair question! Running an uploading & encoding business for ten years though we found that in cases, the file input leaves some to be desired:

  • We received complaints about broken uploads and found that resumable uploads are important, especially for big files and to be inclusive towards people on poorer connections (we also launched tus.io to attack that problem). Uppy uploads can survive network outages and browser crashes or accidental navigate-aways.
  • Uppy supports editing meta information before uploading.
  • Uppy allows cropping images before uploading.
  • There’s the situation where people are using their mobile devices and want to upload on the go, but they have their picture on Instagram, files in Dropbox or a plain file URL from anywhere on the open web. Uppy allows to pick files from those and push it to the destination without downloading it to your mobile device first.
  • Accurate upload progress reporting is an issue on many platforms.
  • Some file validation — size, type, number of files — can be done on the client with Uppy.
  • Uppy integrates webcam support, in case your users want to upload a picture/video/audio that does not exist yet :)
  • A larger drag and drop surface can be pleasant to work with. Some people also like that you can control the styling, language, etc.
  • Uppy is aware of encoding backends. Often after an upload, the server needs to rotate, detect faces, optimize for iPad, or what have you. Uppy can track progress of this and report back to the user in different ways.
  • Sometimes you might want your uploads to happen while you continue to interact on the same single page.

Not all apps need all these features. An <input type="file"> is fine in many situations. But these were a few things that our customers hit / asked about enough to spark us to develop Uppy.

Why is all this goodness free?

Transloadit’s team is small and we have a shared ambition to make a living from open source. By giving away projects like tus.io and Uppy, we’re hoping to advance the state of the art, make life a tiny little bit better for everyone and in doing so have rewarding jobs and get some eyes on our commercial service: a content ingestion & processing platform.

Our thinking is that if only a fraction of our open source userbase can see the appeal of hosted versions straight from the source, that could already be enough to sustain our work. So far this is working out! We’re able to dedicate 80% of our time to open source and haven’t gone bankrupt yet. :D

Does Uppy support S3 uploads?

Yes, please check out the docs for more information.

Can I use Uppy with Rails/Node.js/Go/PHP?

Yes, whatever you want on the backend will work with @uppy/xhr-upload plugin, since it only does a POST or PUT request. Here’s a PHP backend example.

If you want resumability with the Tus plugin, use one of the tus server implementations 👌🏼

And you’ll need @uppy/companion if you’d like your users to be able to pick files from Instagram, Google Drive, Dropbox or via direct URLs (with more services coming).

Contributions are welcome

Used by

Uppy is used by: Photobox, Issuu, Law Insider, Cool Tabs, Soundoff, Scrumi, Crive and others.

Use Uppy in your project? Let us know!

Contributors

arturigoto-bus-stopkvzaduh95ifedapoolarewajuhedgerh
MurderlonmifinqstAJvanLoongithub-actions[bot]lakesare
dependabot[bot]kiloreuxsamuelayosadovnychyirichardwillarsajkachnic
zcallanYukeshShrjankooliverpoolBotzmcallistertyler
mokutsu-courseradschmidtDJWassinkmrbatistataoqftimodwhit
tim-koseltocieartuoxiansppaulnMikeKovariktoadkicker
ap--tranvansangLiviaMedeirosbertho-zerojuliangruberHawxy
gavboultonmejiaejelenalapedominicedenAcconutjhen0409
stephentusobencergazdaa-kriyayonahforststanislavcervenaksksavant
ogtfabernndevstudioMatthiasKunnenmanuelkiesslingdargmueslijohnnyperkins
ofhopeyaegorzhuangyasparanoidThomasG77subha1206
schonertSlavikTraktorscottbesslerjrschumacherrosenfeldrdimartino
ahmedkandelYoussef1313allenfantasyZyclotrop-janarkbdirito
darthf1fortriebfrederikhorsheocoijareymuhammadInam
rettgerstmkabatekjukakoskiolemoignbtrice5idereal
AndrwMbehnammodiBePo65bradedelmancamiloforerocommand-tab
craig-jenningsdavekissdenysdesignethanwillisfrobinsonjrichmeij
richartkeilpaescujmsandmartiuslimMartin005mskelton
mactavishzlafedogrockerjedwoodjasonboscogeertclerx
ghasrfakhriJimmyLvrossngscherromanrobwilson1SxDx
reforaulibanezluarmreman8519pedantic-gitPzoco
ppadmavilasomphillipalexanderpmusarajpedrofsplnetopatricklindsay
Mitchell8210Tashowstajstrayersjauldsteverob
amaituquigebowaptikSpazzMarticusszhsergei-zelinsky
sebasegovia01sdebackerRattonesamuelcolburnfortunto2GNURub
rartachmiralken-kuromilannakummkopinskymhulet
hrshmauricioribeiromatthewhartstongemjesuelemattfikmateuscruz
masumulu28masaokmartin-brennanmarcusforsbergmarcosthejewmperrando
pascalwengerterParsaArvanehPAcryptic022Ozodbek1405leftdevelnil1511
coreprocessnicojonestrungcva10a6tnnaveed-ahmadnadeemcpleasespammelater
marton-laszlo-attilanavruzmmogzolshahimcltmnafeesboudra
netdownmosi-khamaddy-jomdxiaohumagumbojx-zyf
kode-ninjasontixyoujur-ngjohnmanjiro13jyoungbloodgreen-mike
gaelicwinterfrancklfingulelliotsayesdzcpydkisic
zanzlenderolitomasyoann-hellopretvedran555tusharjkhuntthanhthot
stduhpfslawexxx44rtaiebrmoura-92rlebosserhymes
lunttaphil714ordagoodselsevierninesaltneuronet77
craigcbrunnerweston-sankey-mark43dwnstenagyvstiigvalentinoli
viallybodryityler-dot-earthtrivikrtop-mastertvaliasek
tomekptomsaleebaWIStudenttmaierTiarhaitwarlop
tcgjcodehero7386christianwengertcgoinglovecanvasbhc0b41
avallaargghalfatvagreene-courseraaduh95-test-accountsartoshi-foot-dao
zackbloomzlawson-utzachconneryafkariYehudaKremerxhocquet
willycamargosercraigardeoisCommanderRootczjcbush06
Aarbelcfracspranceprattcmpsubvertallchrischarlybillaud
Cretezychaocellvinchungcartfiskcyubryanjswift
bedgerottoeliOcsyoldarefbautistaemuellEdgarSantiago93
sweetrojeetissDennisKofflardhoangsvitdavilima6akizor
KaminskiDaniellCantabarmrboomerdanilatdanschalowdanmichaelo
CruaierwbaaronfunctinoamitporttekacsDogfalo
alirezahiaalepisalexnjasmt3ahmadissaadritasharma
Adrreiadityapatadiaadamvigneaultajh-sradamdottvabannach
superhawk610ajschmidt8Quorafindbducharmeazizkazeemba
ayhankesiciogluavneetmalhotraThe-Flashatsawinash-jc-allenapuyou
arthurdennerAbourasstyndriaanthony0030andychongyzandrii-bodnar
superandrew213radarherekidonngkevin-west-10xkergekacsafiresharkstudios
kaspermeinematykaroljveltenmellow-fellowjmontoyaajcalonso
jbelejjszobodyjorgeepcjondewoojonathanarbelyjsanchez034
Jokcychromacomaonhatemarc-mabeLucklj521lucax88x
lucaperretombrlouimdolphinigleleomelzerleods92
galli-leodvirylarowlanleaanthonyhoangbitslabohkip81
kyleparisielkebabprofsmallpineIanVShuydodHussainAlkhalifah
HughbertDhiromi2424giacomocerquoneroenschggjungbgeoffappleford
gabiganamfuadscodesdtrucsferdiusafgallinariGkleinereva
epexaEnricoSottileelliotdickisontheJoeBizJmalesjessica-coursera
vithjanwiltsjanklimojamestiotiojcjmccleanJbithell
JakubHaladejjakemcallistergaejabongJacobMGEvansmazorussGreenJimmy
intenziveNaxYoishendyweb

License

The MIT License.

transloadit/uppy

{
"props": {
"initialPayload": {
"allShortcutsEnabled": false,
"path": "/",
"repo": {
"id": 46273445,
"defaultBranch": "main",
"name": "uppy",
"ownerLogin": "transloadit",
"currentUserCanPush": false,
"isFork": false,
"isEmpty": false,
"createdAt": "2015-11-16T12:32:33.000Z",
"ownerAvatar": "https://avatars.githubusercontent.com/u/125754?v=4",
"public": true,
"private": false,
"isOrgOwned": true
},
"currentUser": null,
"refInfo": {
"name": "main",
"listCacheKey": "v0:1721873602.0",
"canEdit": false,
"refType": "branch",
"currentOid": "18cd1db114ec363a04f991da2945ad33976048bf"
},
"tree": {
"items": [
{
"name": ".github",
"path": ".github",
"contentType": "directory"
},
{
"name": ".vscode",
"path": ".vscode",
"contentType": "directory"
},
{
"name": ".yarn/patches",
"path": ".yarn/patches",
"contentType": "directory",
"hasSimplifiedPath": true
},
{
"name": "assets",
"path": "assets",
"contentType": "directory"
},
{
"name": "bin",
"path": "bin",
"contentType": "directory"
},
{
"name": "docs",
"path": "docs",
"contentType": "directory"
},
{
"name": "e2e",
"path": "e2e",
"contentType": "directory"
},
{
"name": "examples",
"path": "examples",
"contentType": "directory"
},
{
"name": "output",
"path": "output",
"contentType": "directory"
},
{
"name": "packages",
"path": "packages",
"contentType": "directory"
},
{
"name": "private",
"path": "private",
"contentType": "directory"
},
{
"name": ".browserslistrc",
"path": ".browserslistrc",
"contentType": "file"
},
{
"name": ".dockerignore",
"path": ".dockerignore",
"contentType": "file"
},
{
"name": ".editorconfig",
"path": ".editorconfig",
"contentType": "file"
},
{
"name": ".env.example",
"path": ".env.example",
"contentType": "file"
},
{
"name": ".eslintignore",
"path": ".eslintignore",
"contentType": "file"
},
{
"name": ".eslintrc.js",
"path": ".eslintrc.js",
"contentType": "file"
},
{
"name": ".gitignore",
"path": ".gitignore",
"contentType": "file"
},
{
"name": ".prettierignore",
"path": ".prettierignore",
"contentType": "file"
},
{
"name": ".prettierrc.js",
"path": ".prettierrc.js",
"contentType": "file"
},
{
"name": ".remarkignore",
"path": ".remarkignore",
"contentType": "file"
},
{
"name": ".stylelintrc.json",
"path": ".stylelintrc.json",
"contentType": "file"
},
{
"name": ".yarnrc.yml",
"path": ".yarnrc.yml",
"contentType": "file"
},
{
"name": "BACKLOG.md",
"path": "BACKLOG.md",
"contentType": "file"
},
{
"name": "BUNDLE-README.md",
"path": "BUNDLE-README.md",
"contentType": "file"
},
{
"name": "CHANGELOG.md",
"path": "CHANGELOG.md",
"contentType": "file"
},
{
"name": "Dockerfile",
"path": "Dockerfile",
"contentType": "file"
},
{
"name": "Dockerfile.test",
"path": "Dockerfile.test",
"contentType": "file"
},
{
"name": "LICENSE",
"path": "LICENSE",
"contentType": "file"
},
{
"name": "Makefile",
"path": "Makefile",
"contentType": "file"
},
{
"name": "README.md",
"path": "README.md",
"contentType": "file"
},
{
"name": "SECURITY.md",
"path": "SECURITY.md",
"contentType": "file"
},
{
"name": "babel.config.js",
"path": "babel.config.js",
"contentType": "file"
},
{
"name": "docker-compose-dev.yml",
"path": "docker-compose-dev.yml",
"contentType": "file"
},
{
"name": "docker-compose-test.yml",
"path": "docker-compose-test.yml",
"contentType": "file"
},
{
"name": "docker-compose.yml",
"path": "docker-compose.yml",
"contentType": "file"
},
{
"name": "package.json",
"path": "package.json",
"contentType": "file"
},
{
"name": "tsconfig.json",
"path": "tsconfig.json",
"contentType": "file"
},
{
"name": "tsconfig.shared.json",
"path": "tsconfig.shared.json",
"contentType": "file"
},
{
"name": "vitest.config.ts",
"path": "vitest.config.ts",
"contentType": "file"
},
{
"name": "yarn.lock",
"path": "yarn.lock",
"contentType": "file"
}
],
"templateDirectorySuggestionUrl": null,
"readme": null,
"totalCount": 41,
"showBranchInfobar": false
},
"fileTree": null,
"fileTreeProcessingTime": null,
"foldersToFetch": [],
"treeExpanded": false,
"symbolsExpanded": false,
"isOverview": true,
"overview": {
"banners": {
"shouldRecommendReadme": false,
"isPersonalRepo": false,
"showUseActionBanner": false,
"actionSlug": null,
"actionId": null,
"showProtectBranchBanner": false,
"publishBannersInfo": {
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_repo",
"releasePath": "/transloadit/uppy/releases/new?marketplace=true",
"showPublishActionBanner": false
},
"interactionLimitBanner": null,
"showInvitationBanner": false,
"inviterName": null
},
"codeButton": {
"contactPath": "/contact",
"isEnterprise": false,
"local": {
"protocolInfo": {
"httpAvailable": true,
"sshAvailable": null,
"httpUrl": "https://github.com/transloadit/uppy.git",
"showCloneWarning": null,
"sshUrl": null,
"sshCertificatesRequired": null,
"sshCertificatesAvailable": null,
"ghCliUrl": "gh repo clone transloadit/uppy",
"defaultProtocol": "http",
"newSshKeyUrl": "/settings/ssh/new",
"setProtocolPath": "/users/set_protocol"
},
"platformInfo": {
"cloneUrl": "https://desktop.github.com",
"showVisualStudioCloneButton": false,
"visualStudioCloneUrl": "https://windows.github.com",
"showXcodeCloneButton": false,
"xcodeCloneUrl": "https://developer.apple.com",
"zipballUrl": "/transloadit/uppy/archive/refs/heads/main.zip"
}
},
"newCodespacePath": "/codespaces/new?hide_repo_select=true&repo=46273445"
},
"popovers": {
"rename": null,
"renamedParentRepo": null
},
"commitCount": "9,961",
"overviewFiles": [
{
"displayName": "README.md",
"repoName": "uppy",
"refName": "main",
"path": "README.md",
"preferredFileType": "readme",
"tabName": "README",
"richText": "<article class=\"markdown-body entry-content container-lg\" itemprop=\"text\"><div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://uppy.io\" rel=\"nofollow\">Uppy</a> <a href=\"https://www.npmjs.com/package/uppy\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/d0c052302b1dd07f7511605306efeea23fecd7f76be66c9caaff1099746a436b/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f762f757070792e7376673f7374796c653d666c61742d737175617265\" alt=\"uppy on npm\" data-canonical-src=\"https://img.shields.io/npm/v/uppy.svg?style=flat-square\" style=\"max-width: 100%;\"></a></h1><a id=\"user-content-uppy-\" class=\"anchor\" aria-label=\"Permalink: Uppy\" href=\"#uppy-\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/43ac5935758e013c416c9f7762f75ae480d6da832aa59967a0a143ff8fc7f695/68747470733a2f2f757070792e696f2f696d672f6c6f676f2e737667\"><img src=\"https://camo.githubusercontent.com/43ac5935758e013c416c9f7762f75ae480d6da832aa59967a0a143ff8fc7f695/68747470733a2f2f757070792e696f2f696d672f6c6f676f2e737667\" width=\"120\" alt=\"Uppy logo: a smiling puppy above a pink upwards arrow\" align=\"right\" data-canonical-src=\"https://uppy.io/img/logo.svg\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Uppy is a sleek, modular JavaScript file uploader that integrates seamlessly\nwith any application. It’s fast, has a comprehensible API and lets you worry\nabout more important problems than building a file uploader.</p>\n<ul dir=\"auto\">\n<li><strong>Fetch</strong> files from local disk, remote URLs, Google Drive, Dropbox, Box,\nInstagram or snap and record selfies with a camera</li>\n<li><strong>Preview</strong> and edit metadata with a nice interface</li>\n<li><strong>Upload</strong> to the final destination, optionally process/encode</li>\n</ul>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/transloadit/uppy/raw/main/assets/uppy-2-0-demo-aug-2021.gif\"><img src=\"https://github.com/transloadit/uppy/raw/main/assets/uppy-2-0-demo-aug-2021.gif\" data-animated-image=\"\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\"><strong><a href=\"https://uppy.io/docs\" rel=\"nofollow\">Read the docs</a></strong> |\n<strong><a href=\"https://uppy.io/examples/dashboard/\" rel=\"nofollow\">Try Uppy</a></strong></p>\n<p dir=\"auto\">\n <a href=\"https://transloadit.com\" rel=\"nofollow\">\n <themed-picture data-catalyst-inline=\"true\"><picture>\n <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/transloadit/uppy/assets/375537/6651e57e-cb57-4336-8745-6473ae68d0bd\">\n <source media=\"(prefers-color-scheme: light)\" srcset=\"https://github.com/transloadit/uppy/assets/375537/7f14421d-1e37-464e-8203-ade121216c88\">\n <img src=\"https://github.com/transloadit/uppy/assets/375537/7f14421d-1e37-464e-8203-ade121216c88\" alt=\"Developed by Transloadit\">\n </picture></themed-picture>\n </a>\n</p>\n<p dir=\"auto\">Uppy is being developed by the folks at <a href=\"https://transloadit.com\" rel=\"nofollow\">Transloadit</a>,\na versatile API to handle any file in your app.</p>\n<markdown-accessiblity-table><table>\n<tbody><tr><th>Tests</th><td><a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/transloadit/uppy/workflows/CI/badge.svg\"><img src=\"https://github.com/transloadit/uppy/workflows/CI/badge.svg\" alt=\"CI status for Uppy tests\" style=\"max-width: 100%;\"></a></td><td><a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/transloadit/uppy/workflows/Companion/badge.svg\"><img src=\"https://github.com/transloadit/uppy/workflows/Companion/badge.svg\" alt=\"CI status for Companion tests\" style=\"max-width: 100%;\"></a></td><td><a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/transloadit/uppy/workflows/End-to-end%20tests/badge.svg\"><img src=\"https://github.com/transloadit/uppy/workflows/End-to-end%20tests/badge.svg\" alt=\"CI status for browser tests\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><th>Deploys</th><td><a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/transloadit/uppy/workflows/Release/badge.svg\"><img src=\"https://github.com/transloadit/uppy/workflows/Release/badge.svg\" alt=\"CI status for CDN deployment\" style=\"max-width: 100%;\"></a></td><td><a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/transloadit/uppy/workflows/Companion%20Edge%20Deploy/badge.svg\"><img src=\"https://github.com/transloadit/uppy/workflows/Companion%20Edge%20Deploy/badge.svg\" alt=\"CI status for Companion deployment\" style=\"max-width: 100%;\"></a></td><td><a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/transloadit/uppy.io/workflows/Deploy%20to%20GitHub%20Pages/badge.svg\"><img src=\"https://github.com/transloadit/uppy.io/workflows/Deploy%20to%20GitHub%20Pages/badge.svg\" alt=\"CI status for website deployment\" style=\"max-width: 100%;\"></a></td></tr>\n</tbody></table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Example</h2><a id=\"user-content-example\" class=\"anchor\" aria-label=\"Permalink: Example\" href=\"#example\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Code used in the above example:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"import Uppy from '@uppy/core'\nimport Dashboard from '@uppy/dashboard'\nimport RemoteSources from '@uppy/remote-sources'\nimport ImageEditor from '@uppy/image-editor'\nimport Webcam from '@uppy/webcam'\nimport Tus from '@uppy/tus'\n\nconst uppy = new Uppy()\n .use(Dashboard, { trigger: '#select-files' })\n .use(RemoteSources, { companionUrl: 'https://companion.uppy.io' })\n .use(Webcam)\n .use(ImageEditor)\n .use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })\n .on('complete', (result) =&gt; {\n console.log('Upload result:', result)\n })\"><pre><span class=\"pl-k\">import</span> <span class=\"pl-v\">Uppy</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'@uppy/core'</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-v\">Dashboard</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'@uppy/dashboard'</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-v\">RemoteSources</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'@uppy/remote-sources'</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-v\">ImageEditor</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'@uppy/image-editor'</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-v\">Webcam</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'@uppy/webcam'</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-v\">Tus</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'@uppy/tus'</span>\n\n<span class=\"pl-k\">const</span> <span class=\"pl-s1\">uppy</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Uppy</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">use</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">Dashboard</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">trigger</span>: <span class=\"pl-s\">'#select-files'</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">use</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">RemoteSources</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">companionUrl</span>: <span class=\"pl-s\">'https://companion.uppy.io'</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">use</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">Webcam</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">use</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">ImageEditor</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">use</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">Tus</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">endpoint</span>: <span class=\"pl-s\">'https://tusd.tusdemo.net/files/'</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'complete'</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">result</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'Upload result:'</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">result</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span></pre></div>\n<p dir=\"auto\"><strong><a href=\"https://uppy.io/examples/dashboard/\" rel=\"nofollow\">Try it online</a></strong> or\n<strong><a href=\"https://uppy.io/docs\" rel=\"nofollow\">read the docs</a></strong> for more details on how to use Uppy\nand its plugins.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Features</h2><a id=\"user-content-features\" class=\"anchor\" aria-label=\"Permalink: Features\" href=\"#features\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li>Lightweight, modular plugin-based architecture, light on dependencies ⚡</li>\n<li>Resumable file uploads via the open <a href=\"https://tus.io/\" rel=\"nofollow\">tus</a> standard, so large\nuploads survive network hiccups</li>\n<li>Supports picking files from: Webcam, Dropbox, Box, Google Drive, Instagram,\nbypassing the user’s device where possible, syncing between servers directly\nvia <a href=\"https://uppy.io/docs/companion\" rel=\"nofollow\">@uppy/companion</a></li>\n<li>Works great with file encoding and processing backends, such as\n<a href=\"https://transloadit.com\" rel=\"nofollow\">Transloadit</a>, works great without (all you need is\nto roll your own Apache/Nginx/Node/FFmpeg/etc backend)</li>\n<li>Sleek user interface ✨</li>\n<li>Optional file recovery (after a browser crash) with\n<a href=\"https://uppy.io/docs/golden-retriever/\" rel=\"nofollow\">Golden Retriever</a></li>\n<li>Speaks several languages (i18n) 🌍</li>\n<li>Built with accessibility in mind</li>\n<li>Free for the world, forever (as in beer 🍺, pizza 🍕, and liberty 🗽)</li>\n<li>Cute as a puppy, also accepts cat pictures 🐶</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Installation</h2><a id=\"user-content-installation\" class=\"anchor\" aria-label=\"Permalink: Installation\" href=\"#installation\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npm install @uppy/core @uppy/dashboard @uppy/tus\"><pre>npm install @uppy/core @uppy/dashboard @uppy/tus</pre></div>\n<p dir=\"auto\">Add CSS\n<a href=\"https://releases.transloadit.com/uppy/v4.0.5/uppy.min.css\" rel=\"nofollow\">uppy.min.css</a>,\neither to your HTML page’s <code>&lt;head&gt;</code> or include in JS, if your bundler of choice\nsupports it.</p>\n<p dir=\"auto\">Alternatively, you can also use a pre-built bundle from Transloadit’s CDN:\nEdgly. In that case <code>Uppy</code> will attach itself to the global <code>window.Uppy</code>\nobject.</p>\n<blockquote>\n<p dir=\"auto\"><g-emoji class=\"g-emoji\" alias=\"warning\">⚠️</g-emoji> The bundle consists of most Uppy plugins, so this method is not recommended\nfor production, as your users will have to download all plugins when you are\nlikely using only a few.</p>\n</blockquote>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;!-- 1. Add CSS to `&lt;head&gt;` --&gt;\n&lt;link\n href=&quot;https://releases.transloadit.com/uppy/v4.0.5/uppy.min.css&quot;\n rel=&quot;stylesheet&quot;\n/&gt;\n\n&lt;!-- 2. Initialize --&gt;\n&lt;div id=&quot;files-drag-drop&quot;&gt;&lt;/div&gt;\n&lt;script type=&quot;module&quot;&gt;\n import {\n Uppy,\n Dashboard,\n Tus,\n } from 'https://releases.transloadit.com/uppy/v4.0.5/uppy.min.mjs'\n\n const uppy = new Uppy()\n uppy.use(Dashboard, { target: '#files-drag-drop' })\n uppy.use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })\n&lt;/script&gt;\"><pre><span class=\"pl-c\">&lt;!-- 1. Add CSS to `&lt;head&gt;` --&gt;</span>\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">link</span>\n <span class=\"pl-c1\">href</span>=\"<span class=\"pl-s\">https://releases.transloadit.com/uppy/v4.0.5/uppy.min.css</span>\"\n <span class=\"pl-c1\">rel</span>=\"<span class=\"pl-s\">stylesheet</span>\"\n/&gt;\n\n<span class=\"pl-c\">&lt;!-- 2. Initialize --&gt;</span>\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">div</span> <span class=\"pl-c1\">id</span>=\"<span class=\"pl-s\">files-drag-drop</span>\"<span class=\"pl-kos\">&gt;</span><span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">div</span><span class=\"pl-kos\">&gt;</span>\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">script</span> <span class=\"pl-c1\">type</span>=\"<span class=\"pl-s\">module</span>\"<span class=\"pl-kos\">&gt;</span>\n <span class=\"pl-k\">import</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-v\">Uppy</span><span class=\"pl-kos\">,</span>\n <span class=\"pl-v\">Dashboard</span><span class=\"pl-kos\">,</span>\n <span class=\"pl-v\">Tus</span><span class=\"pl-kos\">,</span>\n <span class=\"pl-kos\">}</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'https://releases.transloadit.com/uppy/v4.0.5/uppy.min.mjs'</span>\n\n <span class=\"pl-k\">const</span> <span class=\"pl-s1\">uppy</span> <span class=\"pl-c1\">=</span> <span class=\"pl-k\">new</span> <span class=\"pl-v\">Uppy</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-s1\">uppy</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">use</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">Dashboard</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">target</span>: <span class=\"pl-s\">'#files-drag-drop'</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span>\n <span class=\"pl-s1\">uppy</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">use</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">Tus</span><span class=\"pl-kos\">,</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c1\">endpoint</span>: <span class=\"pl-s\">'https://tusd.tusdemo.net/files/'</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span>\n<span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">script</span><span class=\"pl-kos\">&gt;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Documentation</h2><a id=\"user-content-documentation\" class=\"anchor\" aria-label=\"Permalink: Documentation\" href=\"#documentation\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"https://uppy.io/docs/uppy/\" rel=\"nofollow\">Uppy</a> — full list of options, methods and events</li>\n<li><a href=\"https://uppy.io/docs/plugins/\" rel=\"nofollow\">Plugins</a> — list of Uppy plugins and their\noptions</li>\n<li><a href=\"https://uppy.io/docs/companion/\" rel=\"nofollow\">Companion</a> — setting up and running a\nCompanion instance, which adds support for Instagram, Dropbox, Box, Google\nDrive and remote URLs</li>\n<li><a href=\"https://uppy.io/docs/react/\" rel=\"nofollow\">React</a> — components to integrate Uppy UI plugins\nwith React apps</li>\n<li><a href=\"https://uppy.io/docs/writing-plugins/\" rel=\"nofollow\">Architecture &amp; Writing a Plugin</a> — how\nto write a plugin for Uppy</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Plugins</h2><a id=\"user-content-plugins\" class=\"anchor\" aria-label=\"Permalink: Plugins\" href=\"#plugins\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://uppy.io/docs/plugins/\" rel=\"nofollow\">List of plugins and their common options</a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">UI Elements</h3><a id=\"user-content-ui-elements\" class=\"anchor\" aria-label=\"Permalink: UI Elements\" href=\"#ui-elements\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"https://uppy.io/docs/dashboard/\" rel=\"nofollow\"><code>Dashboard</code></a> — universal UI with previews,\nprogress bars, metadata editor and all the cool stuff. Required for most UI\nplugins like Webcam and Instagram</li>\n<li><a href=\"https://uppy.io/docs/progress-bar/\" rel=\"nofollow\"><code>Progress Bar</code></a> — minimal progress bar\nthat fills itself when upload progresses</li>\n<li><a href=\"https://uppy.io/docs/status-bar/\" rel=\"nofollow\"><code>Status Bar</code></a> — more detailed progress,\npause/resume/cancel buttons, percentage, speed, uploaded/total sizes (included\nby default with <code>Dashboard</code>)</li>\n<li><a href=\"https://uppy.io/docs/informer/\" rel=\"nofollow\"><code>Informer</code></a> — send notifications like “smile”\nbefore taking a selfie or “upload failed” when all is lost (also included by\ndefault with <code>Dashboard</code>)</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Sources</h3><a id=\"user-content-sources\" class=\"anchor\" aria-label=\"Permalink: Sources\" href=\"#sources\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"https://uppy.io/docs/drag-drop/\" rel=\"nofollow\"><code>Drag &amp; Drop</code></a> — plain drag and drop area</li>\n<li><a href=\"https://uppy.io/docs/file-input/\" rel=\"nofollow\"><code>File Input</code></a> — even plainer “select files”\nbutton</li>\n<li><a href=\"https://uppy.io/docs/webcam/\" rel=\"nofollow\"><code>Webcam</code></a> — snap and record those selfies 📷</li>\n<li>ⓒ <a href=\"https://uppy.io/docs/google-drive/\" rel=\"nofollow\"><code>Google Drive</code></a> — import files from\nGoogle Drive</li>\n<li>ⓒ <a href=\"https://uppy.io/docs/dropbox/\" rel=\"nofollow\"><code>Dropbox</code></a> — import files from Dropbox</li>\n<li>ⓒ <a href=\"https://uppy.io/docs/box/\" rel=\"nofollow\"><code>Box</code></a> — import files from Box</li>\n<li>ⓒ <a href=\"https://uppy.io/docs/instagram/\" rel=\"nofollow\"><code>Instagram</code></a> — import images and videos\nfrom Instagram</li>\n<li>ⓒ <a href=\"https://uppy.io/docs/facebook/\" rel=\"nofollow\"><code>Facebook</code></a> — import images and videos from\nFacebook</li>\n<li>ⓒ <a href=\"https://uppy.io/docs/onedrive/\" rel=\"nofollow\"><code>OneDrive</code></a> — import files from Microsoft\nOneDrive</li>\n<li>ⓒ <a href=\"https://uppy.io/docs/url/\" rel=\"nofollow\"><code>Import From URL</code></a> — import direct URLs from\nanywhere on the web</li>\n</ul>\n<p dir=\"auto\">The ⓒ mark means that <a href=\"https://uppy.io/docs/companion\" rel=\"nofollow\"><code>@uppy/companion</code></a>, a\nserver-side component, is needed for a plugin to work.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Destinations</h3><a id=\"user-content-destinations\" class=\"anchor\" aria-label=\"Permalink: Destinations\" href=\"#destinations\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"https://uppy.io/docs/tus/\" rel=\"nofollow\"><code>Tus</code></a> — resumable uploads via the open\n<a href=\"http://tus.io\" rel=\"nofollow\">tus</a> standard</li>\n<li><a href=\"https://uppy.io/docs/xhr-upload/\" rel=\"nofollow\"><code>XHR Upload</code></a> — regular uploads for any\nbackend out there (like Apache, Nginx)</li>\n<li><a href=\"https://uppy.io/docs/aws-s3/\" rel=\"nofollow\"><code>AWS S3</code></a> — plain upload to AWS S3 or\ncompatible services</li>\n<li><a href=\"https://uppy.io/docs/aws-s3-multipart/\" rel=\"nofollow\"><code>AWS S3 Multipart</code></a> — S3-style\n“Multipart” upload to AWS or compatible services</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">File Processing</h3><a id=\"user-content-file-processing\" class=\"anchor\" aria-label=\"Permalink: File Processing\" href=\"#file-processing\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"https://uppy.io/docs/transloadit/\" rel=\"nofollow\"><code>Transloadit</code></a> — support for\n<a href=\"http://transloadit.com\" rel=\"nofollow\">Transloadit</a>’s robust file uploading and encoding\nbackend</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Miscellaneous</h3><a id=\"user-content-miscellaneous\" class=\"anchor\" aria-label=\"Permalink: Miscellaneous\" href=\"#miscellaneous\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"https://uppy.io/docs/golden-retriever/\" rel=\"nofollow\"><code>Golden Retriever</code></a> — restores files\nafter a browser crash, like it’s nothing</li>\n<li><a href=\"https://uppy.io/docs/thumbnail-generator/\" rel=\"nofollow\"><code>Thumbnail Generator</code></a> — generates\nimage previews (included by default with <code>Dashboard</code>)</li>\n<li><a href=\"https://uppy.io/docs/form/\" rel=\"nofollow\"><code>Form</code></a> — collects metadata from <code>&lt;form&gt;</code> right\nbefore an Uppy upload, then optionally appends results back to the form</li>\n<li><a href=\"https://uppy.io/docs/redux/\" rel=\"nofollow\"><code>Redux</code></a> — for your emerging\n<a href=\"https://github.com/gaearon/redux-devtools\">time traveling</a> needs</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">React</h2><a id=\"user-content-react\" class=\"anchor\" aria-label=\"Permalink: React\" href=\"#react\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li><a href=\"https://uppy.io/docs/react/\" rel=\"nofollow\">React</a> — components to integrate Uppy UI plugins\nwith React apps</li>\n<li><a href=\"/transloadit/uppy/blob/main/examples/react-native-expo\">React Native</a> — basic Uppy component for React\nNative with Expo</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Browser Support</h2><a id=\"user-content-browser-support\" class=\"anchor\" aria-label=\"Permalink: Browser Support\" href=\"#browser-support\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">We aim to support recent versions of Chrome, Firefox, and Safari.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">FAQ</h2><a id=\"user-content-faq\" class=\"anchor\" aria-label=\"Permalink: FAQ\" href=\"#faq\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Why not use <code>&lt;input type=\"file\"&gt;</code>?</h3><a id=\"user-content-why-not-use-input-typefile\" class=\"anchor\" aria-label=\"Permalink: Why not use &lt;input type=&quot;file&quot;&gt;?\" href=\"#why-not-use-input-typefile\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Having no JavaScript beats having a lot of it, so that’s a fair question!\nRunning an uploading &amp; encoding business for ten years though we found that in\ncases, the file input leaves some to be desired:</p>\n<ul dir=\"auto\">\n<li>We received complaints about broken uploads and found that resumable uploads\nare important, especially for big files and to be inclusive towards people on\npoorer connections (we also launched <a href=\"https://tus.io\" rel=\"nofollow\">tus.io</a> to attack that\nproblem). Uppy uploads can survive network outages and browser crashes or\naccidental navigate-aways.</li>\n<li>Uppy supports editing meta information before uploading.</li>\n<li>Uppy allows cropping images before uploading.</li>\n<li>There’s the situation where people are using their mobile devices and want to\nupload on the go, but they have their picture on Instagram, files in Dropbox\nor a plain file URL from anywhere on the open web. Uppy allows to pick files\nfrom those and push it to the destination without downloading it to your\nmobile device first.</li>\n<li>Accurate upload progress reporting is an issue on many platforms.</li>\n<li>Some file validation — size, type, number of files — can be done on the client\nwith Uppy.</li>\n<li>Uppy integrates webcam support, in case your users want to upload a\npicture/video/audio that does not exist yet :)</li>\n<li>A larger drag and drop surface can be pleasant to work with. Some people also\nlike that you can control the styling, language, etc.</li>\n<li>Uppy is aware of encoding backends. Often after an upload, the server needs to\nrotate, detect faces, optimize for iPad, or what have you. Uppy can track\nprogress of this and report back to the user in different ways.</li>\n<li>Sometimes you might want your uploads to happen while you continue to interact\non the same single page.</li>\n</ul>\n<p dir=\"auto\">Not all apps need all these features. An <code>&lt;input type=\"file\"&gt;</code> is fine in many\nsituations. But these were a few things that our customers hit / asked about\nenough to spark us to develop Uppy.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Why is all this goodness free?</h3><a id=\"user-content-why-is-all-this-goodness-free\" class=\"anchor\" aria-label=\"Permalink: Why is all this goodness free?\" href=\"#why-is-all-this-goodness-free\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Transloadit’s team is small and we have a shared ambition to make a living from\nopen source. By giving away projects like <a href=\"https://tus.io\" rel=\"nofollow\">tus.io</a> and\n<a href=\"https://uppy.io\" rel=\"nofollow\">Uppy</a>, we’re hoping to advance the state of the art, make life\na tiny little bit better for everyone and in doing so have rewarding jobs and\nget some eyes on our commercial service:\n<a href=\"https://transloadit.com\" rel=\"nofollow\">a content ingestion &amp; processing platform</a>.</p>\n<p dir=\"auto\">Our thinking is that if only a fraction of our open source userbase can see the\nappeal of hosted versions straight from the source, that could already be enough\nto sustain our work. So far this is working out! We’re able to dedicate 80% of\nour time to open source and haven’t gone bankrupt yet. :D</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Does Uppy support S3 uploads?</h3><a id=\"user-content-does-uppy-support-s3-uploads\" class=\"anchor\" aria-label=\"Permalink: Does Uppy support S3 uploads?\" href=\"#does-uppy-support-s3-uploads\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Yes, please check out the <a href=\"https://uppy.io/docs/aws-s3/\" rel=\"nofollow\">docs</a> for more\ninformation.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Can I use Uppy with Rails/Node.js/Go/PHP?</h3><a id=\"user-content-can-i-use-uppy-with-railsnodejsgophp\" class=\"anchor\" aria-label=\"Permalink: Can I use Uppy with Rails/Node.js/Go/PHP?\" href=\"#can-i-use-uppy-with-railsnodejsgophp\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Yes, whatever you want on the backend will work with <code>@uppy/xhr-upload</code> plugin,\nsince it only does a <code>POST</code> or <code>PUT</code> request. Here’s a\n<a href=\"https://uppy.io/docs/xhr-upload/#Uploading-to-a-PHP-Server\" rel=\"nofollow\">PHP backend example</a>.</p>\n<p dir=\"auto\">If you want resumability with the Tus plugin, use\n<a href=\"https://tus.io/implementations.html\" rel=\"nofollow\">one of the tus server implementations</a> 👌🏼</p>\n<p dir=\"auto\">And you’ll need <a href=\"https://uppy.io/docs/companion\" rel=\"nofollow\"><code>@uppy/companion</code></a> if you’d\nlike your users to be able to pick files from Instagram, Google Drive, Dropbox\nor via direct URLs (with more services coming).</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Contributions are welcome</h2><a id=\"user-content-contributions-are-welcome\" class=\"anchor\" aria-label=\"Permalink: Contributions are welcome\" href=\"#contributions-are-welcome\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li>Contributor’s guide in <a href=\"/transloadit/uppy/blob/main/.github/CONTRIBUTING.md\"><code>.github/CONTRIBUTING.md</code></a></li>\n<li>Changelog to track our release progress (we aim to roll out a release every\nmonth): <a href=\"/transloadit/uppy/blob/main/CHANGELOG.md\"><code>CHANGELOG.md</code></a></li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Used by</h2><a id=\"user-content-used-by\" class=\"anchor\" aria-label=\"Permalink: Used by\" href=\"#used-by\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Uppy is used by: <a href=\"http://photobox.com\" rel=\"nofollow\">Photobox</a>, <a href=\"https://issuu.com/\" rel=\"nofollow\">Issuu</a>,\n<a href=\"https://lawinsider.com\" rel=\"nofollow\">Law Insider</a>, <a href=\"https://cool-tabs.com\" rel=\"nofollow\">Cool Tabs</a>,\n<a href=\"https://soundoff.io\" rel=\"nofollow\">Soundoff</a>, <a href=\"https://www.scrumi.io/\" rel=\"nofollow\">Scrumi</a>,\n<a href=\"https://crive.co/\" rel=\"nofollow\">Crive</a> and others.</p>\n<p dir=\"auto\">Use Uppy in your project?\n<a href=\"https://github.com/transloadit/uppy/issues/769\" data-hovercard-type=\"issue\" data-hovercard-url=\"/transloadit/uppy/issues/769/hovercard\">Let us know</a>!</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Contributors</h2><a id=\"user-content-contributors\" class=\"anchor\" aria-label=\"Permalink: Contributors\" href=\"#contributors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table id=\"user-content-contributors_table\">\n<tbody><tr><td><a href=\"https://github.com/arturi\"><img width=\"117\" alt=\"arturi\" src=\"https://avatars.githubusercontent.com/u/1199054?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/goto-bus-stop\"><img width=\"117\" alt=\"goto-bus-stop\" src=\"https://avatars.githubusercontent.com/u/1006268?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/kvz\"><img width=\"117\" alt=\"kvz\" src=\"https://avatars.githubusercontent.com/u/26752?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/aduh95\"><img width=\"117\" alt=\"aduh95\" src=\"https://avatars.githubusercontent.com/u/14309773?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ifedapoolarewaju\"><img width=\"117\" alt=\"ifedapoolarewaju\" src=\"https://avatars.githubusercontent.com/u/8383781?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/hedgerh\"><img width=\"117\" alt=\"hedgerh\" src=\"https://avatars.githubusercontent.com/u/2524280?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/Murderlon\"><img width=\"117\" alt=\"Murderlon\" src=\"https://avatars.githubusercontent.com/u/9060226?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mifi\"><img width=\"117\" alt=\"mifi\" src=\"https://avatars.githubusercontent.com/u/402547?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/nqst\"><img width=\"117\" alt=\"nqst\" src=\"https://avatars.githubusercontent.com/u/375537?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/AJvanLoon\"><img width=\"117\" alt=\"AJvanLoon\" src=\"https://avatars.githubusercontent.com/u/15716628?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/apps/github-actions\"><img width=\"117\" alt=\"github-actions[bot]\" src=\"https://avatars.githubusercontent.com/in/15368?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/lakesare\"><img width=\"117\" alt=\"lakesare\" src=\"https://avatars.githubusercontent.com/u/7578559?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/apps/dependabot\"><img width=\"117\" alt=\"dependabot[bot]\" src=\"https://avatars.githubusercontent.com/in/29110?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/kiloreux\"><img width=\"117\" alt=\"kiloreux\" src=\"https://avatars.githubusercontent.com/u/6282557?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/samuelayo\"><img width=\"117\" alt=\"samuelayo\" src=\"https://avatars.githubusercontent.com/u/14964486?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sadovnychyi\"><img width=\"117\" alt=\"sadovnychyi\" src=\"https://avatars.githubusercontent.com/u/193864?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/richardwillars\"><img width=\"117\" alt=\"richardwillars\" src=\"https://avatars.githubusercontent.com/u/291004?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ajkachnic\"><img width=\"117\" alt=\"ajkachnic\" src=\"https://avatars.githubusercontent.com/u/44317699?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/zcallan\"><img width=\"117\" alt=\"zcallan\" src=\"https://avatars.githubusercontent.com/u/13760738?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/YukeshShr\"><img width=\"117\" alt=\"YukeshShr\" src=\"https://avatars.githubusercontent.com/u/71844521?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/janko\"><img width=\"117\" alt=\"janko\" src=\"https://avatars.githubusercontent.com/u/795488?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/oliverpool\"><img width=\"117\" alt=\"oliverpool\" src=\"https://avatars.githubusercontent.com/u/3864879?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Botz\"><img width=\"117\" alt=\"Botz\" src=\"https://avatars.githubusercontent.com/u/2706678?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mcallistertyler\"><img width=\"117\" alt=\"mcallistertyler\" src=\"https://avatars.githubusercontent.com/u/14939210?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/mokutsu-coursera\"><img width=\"117\" alt=\"mokutsu-coursera\" src=\"https://avatars.githubusercontent.com/u/65177495?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dschmidt\"><img width=\"117\" alt=\"dschmidt\" src=\"https://avatars.githubusercontent.com/u/448487?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/DJWassink\"><img width=\"117\" alt=\"DJWassink\" src=\"https://avatars.githubusercontent.com/u/1822404?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mrbatista\"><img width=\"117\" alt=\"mrbatista\" src=\"https://avatars.githubusercontent.com/u/6544817?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/taoqf\"><img width=\"117\" alt=\"taoqf\" src=\"https://avatars.githubusercontent.com/u/15901911?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/timodwhit\"><img width=\"117\" alt=\"timodwhit\" src=\"https://avatars.githubusercontent.com/u/2761203?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/tim-kos\"><img width=\"117\" alt=\"tim-kos\" src=\"https://avatars.githubusercontent.com/u/15005?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/eltociear\"><img width=\"117\" alt=\"eltociear\" src=\"https://avatars.githubusercontent.com/u/22633385?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tuoxiansp\"><img width=\"117\" alt=\"tuoxiansp\" src=\"https://avatars.githubusercontent.com/u/3960056?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/pauln\"><img width=\"117\" alt=\"pauln\" src=\"https://avatars.githubusercontent.com/u/574359?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/MikeKovarik\"><img width=\"117\" alt=\"MikeKovarik\" src=\"https://avatars.githubusercontent.com/u/3995401?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/toadkicker\"><img width=\"117\" alt=\"toadkicker\" src=\"https://avatars.githubusercontent.com/u/523330?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/ap--\"><img width=\"117\" alt=\"ap--\" src=\"https://avatars.githubusercontent.com/u/1463443?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tranvansang\"><img width=\"117\" alt=\"tranvansang\" src=\"https://avatars.githubusercontent.com/u/13043196?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/LiviaMedeiros\"><img width=\"117\" alt=\"LiviaMedeiros\" src=\"https://avatars.githubusercontent.com/u/74449973?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/bertho-zero\"><img width=\"117\" alt=\"bertho-zero\" src=\"https://avatars.githubusercontent.com/u/8525267?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/juliangruber\"><img width=\"117\" alt=\"juliangruber\" src=\"https://avatars.githubusercontent.com/u/10247?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Hawxy\"><img width=\"117\" alt=\"Hawxy\" src=\"https://avatars.githubusercontent.com/u/975824?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/gavboulton\"><img width=\"117\" alt=\"gavboulton\" src=\"https://avatars.githubusercontent.com/u/3900826?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mejiaej\"><img width=\"117\" alt=\"mejiaej\" src=\"https://avatars.githubusercontent.com/u/4699893?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/elenalape\"><img width=\"117\" alt=\"elenalape\" src=\"https://avatars.githubusercontent.com/u/22844059?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dominiceden\"><img width=\"117\" alt=\"dominiceden\" src=\"https://avatars.githubusercontent.com/u/6367692?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Acconut\"><img width=\"117\" alt=\"Acconut\" src=\"https://avatars.githubusercontent.com/u/1375043?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jhen0409\"><img width=\"117\" alt=\"jhen0409\" src=\"https://avatars.githubusercontent.com/u/3001525?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/stephentuso\"><img width=\"117\" alt=\"stephentuso\" src=\"https://avatars.githubusercontent.com/u/11889560?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/bencergazda\"><img width=\"117\" alt=\"bencergazda\" src=\"https://avatars.githubusercontent.com/u/5767697?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/a-kriya\"><img width=\"117\" alt=\"a-kriya\" src=\"https://avatars.githubusercontent.com/u/26761352?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/yonahforst\"><img width=\"117\" alt=\"yonahforst\" src=\"https://avatars.githubusercontent.com/u/1440796?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/stanislavcervenak\"><img width=\"117\" alt=\"stanislavcervenak\" src=\"https://avatars.githubusercontent.com/u/6931349?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sksavant\"><img width=\"117\" alt=\"sksavant\" src=\"https://avatars.githubusercontent.com/u/1040701?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/ogtfaber\"><img width=\"117\" alt=\"ogtfaber\" src=\"https://avatars.githubusercontent.com/u/320955?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/nndevstudio\"><img width=\"117\" alt=\"nndevstudio\" src=\"https://avatars.githubusercontent.com/u/22050968?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/MatthiasKunnen\"><img width=\"117\" alt=\"MatthiasKunnen\" src=\"https://avatars.githubusercontent.com/u/16807587?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/manuelkiessling\"><img width=\"117\" alt=\"manuelkiessling\" src=\"https://avatars.githubusercontent.com/u/206592?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dargmuesli\"><img width=\"117\" alt=\"dargmuesli\" src=\"https://avatars.githubusercontent.com/u/4778485?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/johnnyperkins\"><img width=\"117\" alt=\"johnnyperkins\" src=\"https://avatars.githubusercontent.com/u/16482282?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/ofhope\"><img width=\"117\" alt=\"ofhope\" src=\"https://avatars.githubusercontent.com/u/1826459?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/yaegor\"><img width=\"117\" alt=\"yaegor\" src=\"https://avatars.githubusercontent.com/u/3315?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/zhuangya\"><img width=\"117\" alt=\"zhuangya\" src=\"https://avatars.githubusercontent.com/u/499038?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sparanoid\"><img width=\"117\" alt=\"sparanoid\" src=\"https://avatars.githubusercontent.com/u/96356?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ThomasG77\"><img width=\"117\" alt=\"ThomasG77\" src=\"https://avatars.githubusercontent.com/u/642120?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/subha1206\"><img width=\"117\" alt=\"subha1206\" src=\"https://avatars.githubusercontent.com/u/36275153?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/schonert\"><img width=\"117\" alt=\"schonert\" src=\"https://avatars.githubusercontent.com/u/2185697?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/SlavikTraktor\"><img width=\"117\" alt=\"SlavikTraktor\" src=\"https://avatars.githubusercontent.com/u/11923751?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/scottbessler\"><img width=\"117\" alt=\"scottbessler\" src=\"https://avatars.githubusercontent.com/u/293802?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jrschumacher\"><img width=\"117\" alt=\"jrschumacher\" src=\"https://avatars.githubusercontent.com/u/46549?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/rosenfeld\"><img width=\"117\" alt=\"rosenfeld\" src=\"https://avatars.githubusercontent.com/u/32246?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/rdimartino\"><img width=\"117\" alt=\"rdimartino\" src=\"https://avatars.githubusercontent.com/u/11539300?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/ahmedkandel\"><img width=\"117\" alt=\"ahmedkandel\" src=\"https://avatars.githubusercontent.com/u/28398523?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Youssef1313\"><img width=\"117\" alt=\"Youssef1313\" src=\"https://avatars.githubusercontent.com/u/31348972?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/allenfantasy\"><img width=\"117\" alt=\"allenfantasy\" src=\"https://avatars.githubusercontent.com/u/1009294?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Zyclotrop-j\"><img width=\"117\" alt=\"Zyclotrop-j\" src=\"https://avatars.githubusercontent.com/u/4939546?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/anark\"><img width=\"117\" alt=\"anark\" src=\"https://avatars.githubusercontent.com/u/101184?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/bdirito\"><img width=\"117\" alt=\"bdirito\" src=\"https://avatars.githubusercontent.com/u/8117238?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/darthf1\"><img width=\"117\" alt=\"darthf1\" src=\"https://avatars.githubusercontent.com/u/17253332?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/fortrieb\"><img width=\"117\" alt=\"fortrieb\" src=\"https://avatars.githubusercontent.com/u/4126707?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/frederikhors\"><img width=\"117\" alt=\"frederikhors\" src=\"https://avatars.githubusercontent.com/u/41120635?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/heocoi\"><img width=\"117\" alt=\"heocoi\" src=\"https://avatars.githubusercontent.com/u/13751011?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jarey\"><img width=\"117\" alt=\"jarey\" src=\"https://avatars.githubusercontent.com/u/5025224?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/muhammadInam\"><img width=\"117\" alt=\"muhammadInam\" src=\"https://avatars.githubusercontent.com/u/7801708?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/rettgerst\"><img width=\"117\" alt=\"rettgerst\" src=\"https://avatars.githubusercontent.com/u/11684948?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mkabatek\"><img width=\"117\" alt=\"mkabatek\" src=\"https://avatars.githubusercontent.com/u/1764486?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jukakoski\"><img width=\"117\" alt=\"jukakoski\" src=\"https://avatars.githubusercontent.com/u/52720967?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/olemoign\"><img width=\"117\" alt=\"olemoign\" src=\"https://avatars.githubusercontent.com/u/11632871?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/btrice\"><img width=\"117\" alt=\"btrice\" src=\"https://avatars.githubusercontent.com/u/4358225?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/5idereal\"><img width=\"117\" alt=\"5idereal\" src=\"https://avatars.githubusercontent.com/u/30827929?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/AndrwM\"><img width=\"117\" alt=\"AndrwM\" src=\"https://avatars.githubusercontent.com/u/565743?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/behnammodi\"><img width=\"117\" alt=\"behnammodi\" src=\"https://avatars.githubusercontent.com/u/1549069?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/BePo65\"><img width=\"117\" alt=\"BePo65\" src=\"https://avatars.githubusercontent.com/u/6582465?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/bradedelman\"><img width=\"117\" alt=\"bradedelman\" src=\"https://avatars.githubusercontent.com/u/124367?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/camiloforero\"><img width=\"117\" alt=\"camiloforero\" src=\"https://avatars.githubusercontent.com/u/6606686?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/command-tab\"><img width=\"117\" alt=\"command-tab\" src=\"https://avatars.githubusercontent.com/u/3069?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/craig-jennings\"><img width=\"117\" alt=\"craig-jennings\" src=\"https://avatars.githubusercontent.com/u/1683368?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/davekiss\"><img width=\"117\" alt=\"davekiss\" src=\"https://avatars.githubusercontent.com/u/1256071?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/denysdesign\"><img width=\"117\" alt=\"denysdesign\" src=\"https://avatars.githubusercontent.com/u/1041797?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ethanwillis\"><img width=\"117\" alt=\"ethanwillis\" src=\"https://avatars.githubusercontent.com/u/182492?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/frobinsonj\"><img width=\"117\" alt=\"frobinsonj\" src=\"https://avatars.githubusercontent.com/u/16726902?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/richmeij\"><img width=\"117\" alt=\"richmeij\" src=\"https://avatars.githubusercontent.com/u/9741858?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/richartkeil\"><img width=\"117\" alt=\"richartkeil\" src=\"https://avatars.githubusercontent.com/u/8680858?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/paescuj\"><img width=\"117\" alt=\"paescuj\" src=\"https://avatars.githubusercontent.com/u/5363448?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/msand\"><img width=\"117\" alt=\"msand\" src=\"https://avatars.githubusercontent.com/u/1131362?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/martiuslim\"><img width=\"117\" alt=\"martiuslim\" src=\"https://avatars.githubusercontent.com/u/17944339?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Martin005\"><img width=\"117\" alt=\"Martin005\" src=\"https://avatars.githubusercontent.com/u/10096404?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mskelton\"><img width=\"117\" alt=\"mskelton\" src=\"https://avatars.githubusercontent.com/u/25914066?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/mactavishz\"><img width=\"117\" alt=\"mactavishz\" src=\"https://avatars.githubusercontent.com/u/12948083?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/lafe\"><img width=\"117\" alt=\"lafe\" src=\"https://avatars.githubusercontent.com/u/4070008?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dogrocker\"><img width=\"117\" alt=\"dogrocker\" src=\"https://avatars.githubusercontent.com/u/8379027?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jedwood\"><img width=\"117\" alt=\"jedwood\" src=\"https://avatars.githubusercontent.com/u/369060?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jasonbosco\"><img width=\"117\" alt=\"jasonbosco\" src=\"https://avatars.githubusercontent.com/u/458383?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/geertclerx\"><img width=\"117\" alt=\"geertclerx\" src=\"https://avatars.githubusercontent.com/u/1381327?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/ghasrfakhri\"><img width=\"117\" alt=\"ghasrfakhri\" src=\"https://avatars.githubusercontent.com/u/4945963?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/JimmyLv\"><img width=\"117\" alt=\"JimmyLv\" src=\"https://avatars.githubusercontent.com/u/4997466?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/rossng\"><img width=\"117\" alt=\"rossng\" src=\"https://avatars.githubusercontent.com/u/565371?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/scherroman\"><img width=\"117\" alt=\"scherroman\" src=\"https://avatars.githubusercontent.com/u/7923938?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/robwilson1\"><img width=\"117\" alt=\"robwilson1\" src=\"https://avatars.githubusercontent.com/u/7114944?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/SxDx\"><img width=\"117\" alt=\"SxDx\" src=\"https://avatars.githubusercontent.com/u/2004247?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/refo\"><img width=\"117\" alt=\"refo\" src=\"https://avatars.githubusercontent.com/u/1114116?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/raulibanez\"><img width=\"117\" alt=\"raulibanez\" src=\"https://avatars.githubusercontent.com/u/1070825?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/luarmr\"><img width=\"117\" alt=\"luarmr\" src=\"https://avatars.githubusercontent.com/u/817416?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/eman8519\"><img width=\"117\" alt=\"eman8519\" src=\"https://avatars.githubusercontent.com/u/2380804?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/pedantic-git\"><img width=\"117\" alt=\"pedantic-git\" src=\"https://avatars.githubusercontent.com/u/962930?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Pzoco\"><img width=\"117\" alt=\"Pzoco\" src=\"https://avatars.githubusercontent.com/u/3101348?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/ppadmavilasom\"><img width=\"117\" alt=\"ppadmavilasom\" src=\"https://avatars.githubusercontent.com/u/11167452?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/phillipalexander\"><img width=\"117\" alt=\"phillipalexander\" src=\"https://avatars.githubusercontent.com/u/1577682?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/pmusaraj\"><img width=\"117\" alt=\"pmusaraj\" src=\"https://avatars.githubusercontent.com/u/368961?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/pedrofs\"><img width=\"117\" alt=\"pedrofs\" src=\"https://avatars.githubusercontent.com/u/56484?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/plneto\"><img width=\"117\" alt=\"plneto\" src=\"https://avatars.githubusercontent.com/u/5697434?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/patricklindsay\"><img width=\"117\" alt=\"patricklindsay\" src=\"https://avatars.githubusercontent.com/u/7923681?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/Mitchell8210\"><img width=\"117\" alt=\"Mitchell8210\" src=\"https://avatars.githubusercontent.com/u/23045264?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Tashows\"><img width=\"117\" alt=\"Tashows\" src=\"https://avatars.githubusercontent.com/u/16656928?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/taj\"><img width=\"117\" alt=\"taj\" src=\"https://avatars.githubusercontent.com/u/16062635?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/strayer\"><img width=\"117\" alt=\"strayer\" src=\"https://avatars.githubusercontent.com/u/310624?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sjauld\"><img width=\"117\" alt=\"sjauld\" src=\"https://avatars.githubusercontent.com/u/8232503?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/steverob\"><img width=\"117\" alt=\"steverob\" src=\"https://avatars.githubusercontent.com/u/1220480?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/amaitu\"><img width=\"117\" alt=\"amaitu\" src=\"https://avatars.githubusercontent.com/u/15688439?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/quigebo\"><img width=\"117\" alt=\"quigebo\" src=\"https://avatars.githubusercontent.com/u/741?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/waptik\"><img width=\"117\" alt=\"waptik\" src=\"https://avatars.githubusercontent.com/u/1687551?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/SpazzMarticus\"><img width=\"117\" alt=\"SpazzMarticus\" src=\"https://avatars.githubusercontent.com/u/5716457?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/szh\"><img width=\"117\" alt=\"szh\" src=\"https://avatars.githubusercontent.com/u/546965?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sergei-zelinsky\"><img width=\"117\" alt=\"sergei-zelinsky\" src=\"https://avatars.githubusercontent.com/u/19428086?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/sebasegovia01\"><img width=\"117\" alt=\"sebasegovia01\" src=\"https://avatars.githubusercontent.com/u/35777287?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sdebacker\"><img width=\"117\" alt=\"sdebacker\" src=\"https://avatars.githubusercontent.com/u/134503?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Rattone\"><img width=\"117\" alt=\"Rattone\" src=\"https://avatars.githubusercontent.com/u/7362607?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/samuelcolburn\"><img width=\"117\" alt=\"samuelcolburn\" src=\"https://avatars.githubusercontent.com/u/9741902?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/fortunto2\"><img width=\"117\" alt=\"fortunto2\" src=\"https://avatars.githubusercontent.com/u/1236751?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/GNURub\"><img width=\"117\" alt=\"GNURub\" src=\"https://avatars.githubusercontent.com/u/1318648?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/rart\"><img width=\"117\" alt=\"rart\" src=\"https://avatars.githubusercontent.com/u/3928341?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/achmiral\"><img width=\"117\" alt=\"achmiral\" src=\"https://avatars.githubusercontent.com/u/10906059?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ken-kuro\"><img width=\"117\" alt=\"ken-kuro\" src=\"https://avatars.githubusercontent.com/u/47441476?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/milannakum\"><img width=\"117\" alt=\"milannakum\" src=\"https://avatars.githubusercontent.com/u/11374368?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mkopinsky\"><img width=\"117\" alt=\"mkopinsky\" src=\"https://avatars.githubusercontent.com/u/591435?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mhulet\"><img width=\"117\" alt=\"mhulet\" src=\"https://avatars.githubusercontent.com/u/293355?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/hrsh\"><img width=\"117\" alt=\"hrsh\" src=\"https://avatars.githubusercontent.com/u/1929359?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mauricioribeiro\"><img width=\"117\" alt=\"mauricioribeiro\" src=\"https://avatars.githubusercontent.com/u/2589856?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/matthewhartstonge\"><img width=\"117\" alt=\"matthewhartstonge\" src=\"https://avatars.githubusercontent.com/u/6119549?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mjesuele\"><img width=\"117\" alt=\"mjesuele\" src=\"https://avatars.githubusercontent.com/u/871117?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mattfik\"><img width=\"117\" alt=\"mattfik\" src=\"https://avatars.githubusercontent.com/u/1638028?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mateuscruz\"><img width=\"117\" alt=\"mateuscruz\" src=\"https://avatars.githubusercontent.com/u/8962842?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/masumulu28\"><img width=\"117\" alt=\"masumulu28\" src=\"https://avatars.githubusercontent.com/u/49063256?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/masaok\"><img width=\"117\" alt=\"masaok\" src=\"https://avatars.githubusercontent.com/u/1320083?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/martin-brennan\"><img width=\"117\" alt=\"martin-brennan\" src=\"https://avatars.githubusercontent.com/u/920448?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/marcusforsberg\"><img width=\"117\" alt=\"marcusforsberg\" src=\"https://avatars.githubusercontent.com/u/1009069?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/marcosthejew\"><img width=\"117\" alt=\"marcosthejew\" src=\"https://avatars.githubusercontent.com/u/1500967?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mperrando\"><img width=\"117\" alt=\"mperrando\" src=\"https://avatars.githubusercontent.com/u/525572?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/pascalwengerter\"><img width=\"117\" alt=\"pascalwengerter\" src=\"https://avatars.githubusercontent.com/u/16822008?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ParsaArvanehPA\"><img width=\"117\" alt=\"ParsaArvanehPA\" src=\"https://avatars.githubusercontent.com/u/62149413?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/cryptic022\"><img width=\"117\" alt=\"cryptic022\" src=\"https://avatars.githubusercontent.com/u/18145703?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Ozodbek1405\"><img width=\"117\" alt=\"Ozodbek1405\" src=\"https://avatars.githubusercontent.com/u/86141593?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/leftdevel\"><img width=\"117\" alt=\"leftdevel\" src=\"https://avatars.githubusercontent.com/u/843337?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/nil1511\"><img width=\"117\" alt=\"nil1511\" src=\"https://avatars.githubusercontent.com/u/2058170?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/coreprocess\"><img width=\"117\" alt=\"coreprocess\" src=\"https://avatars.githubusercontent.com/u/1226918?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/nicojones\"><img width=\"117\" alt=\"nicojones\" src=\"https://avatars.githubusercontent.com/u/6078915?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/trungcva10a6tn\"><img width=\"117\" alt=\"trungcva10a6tn\" src=\"https://avatars.githubusercontent.com/u/18293783?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/naveed-ahmad\"><img width=\"117\" alt=\"naveed-ahmad\" src=\"https://avatars.githubusercontent.com/u/701567?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/nadeemc\"><img width=\"117\" alt=\"nadeemc\" src=\"https://avatars.githubusercontent.com/u/3429228?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/pleasespammelater\"><img width=\"117\" alt=\"pleasespammelater\" src=\"https://avatars.githubusercontent.com/u/11870394?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/marton-laszlo-attila\"><img width=\"117\" alt=\"marton-laszlo-attila\" src=\"https://avatars.githubusercontent.com/u/73295321?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/navruzm\"><img width=\"117\" alt=\"navruzm\" src=\"https://avatars.githubusercontent.com/u/168341?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mogzol\"><img width=\"117\" alt=\"mogzol\" src=\"https://avatars.githubusercontent.com/u/11789801?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/shahimclt\"><img width=\"117\" alt=\"shahimclt\" src=\"https://avatars.githubusercontent.com/u/8318002?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mnafees\"><img width=\"117\" alt=\"mnafees\" src=\"https://avatars.githubusercontent.com/u/1763885?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/boudra\"><img width=\"117\" alt=\"boudra\" src=\"https://avatars.githubusercontent.com/u/711886?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/netdown\"><img width=\"117\" alt=\"netdown\" src=\"https://avatars.githubusercontent.com/u/4265403?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mosi-kha\"><img width=\"117\" alt=\"mosi-kha\" src=\"https://avatars.githubusercontent.com/u/35611016?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/maddy-jo\"><img width=\"117\" alt=\"maddy-jo\" src=\"https://avatars.githubusercontent.com/u/3241493?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mdxiaohu\"><img width=\"117\" alt=\"mdxiaohu\" src=\"https://avatars.githubusercontent.com/u/42248614?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/magumbo\"><img width=\"117\" alt=\"magumbo\" src=\"https://avatars.githubusercontent.com/u/6683765?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jx-zyf\"><img width=\"117\" alt=\"jx-zyf\" src=\"https://avatars.githubusercontent.com/u/26456842?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/kode-ninja\"><img width=\"117\" alt=\"kode-ninja\" src=\"https://avatars.githubusercontent.com/u/7857611?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sontixyou\"><img width=\"117\" alt=\"sontixyou\" src=\"https://avatars.githubusercontent.com/u/19817196?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jur-ng\"><img width=\"117\" alt=\"jur-ng\" src=\"https://avatars.githubusercontent.com/u/111122756?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/johnmanjiro13\"><img width=\"117\" alt=\"johnmanjiro13\" src=\"https://avatars.githubusercontent.com/u/28798279?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jyoungblood\"><img width=\"117\" alt=\"jyoungblood\" src=\"https://avatars.githubusercontent.com/u/56104?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/green-mike\"><img width=\"117\" alt=\"green-mike\" src=\"https://avatars.githubusercontent.com/u/5584225?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/gaelicwinter\"><img width=\"117\" alt=\"gaelicwinter\" src=\"https://avatars.githubusercontent.com/u/6510266?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/franckl\"><img width=\"117\" alt=\"franckl\" src=\"https://avatars.githubusercontent.com/u/3875803?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/fingul\"><img width=\"117\" alt=\"fingul\" src=\"https://avatars.githubusercontent.com/u/894739?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/elliotsayes\"><img width=\"117\" alt=\"elliotsayes\" src=\"https://avatars.githubusercontent.com/u/7699058?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dzcpy\"><img width=\"117\" alt=\"dzcpy\" src=\"https://avatars.githubusercontent.com/u/203980?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dkisic\"><img width=\"117\" alt=\"dkisic\" src=\"https://avatars.githubusercontent.com/u/32257921?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/zanzlender\"><img width=\"117\" alt=\"zanzlender\" src=\"https://avatars.githubusercontent.com/u/44570474?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/olitomas\"><img width=\"117\" alt=\"olitomas\" src=\"https://avatars.githubusercontent.com/u/6918659?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/yoann-hellopret\"><img width=\"117\" alt=\"yoann-hellopret\" src=\"https://avatars.githubusercontent.com/u/46525558?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/vedran555\"><img width=\"117\" alt=\"vedran555\" src=\"https://avatars.githubusercontent.com/u/38395951?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tusharjkhunt\"><img width=\"117\" alt=\"tusharjkhunt\" src=\"https://avatars.githubusercontent.com/u/31904234?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/thanhthot\"><img width=\"117\" alt=\"thanhthot\" src=\"https://avatars.githubusercontent.com/u/50633205?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/stduhpf\"><img width=\"117\" alt=\"stduhpf\" src=\"https://avatars.githubusercontent.com/u/28208228?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/slawexxx44\"><img width=\"117\" alt=\"slawexxx44\" src=\"https://avatars.githubusercontent.com/u/11180644?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/rtaieb\"><img width=\"117\" alt=\"rtaieb\" src=\"https://avatars.githubusercontent.com/u/35224301?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/rmoura-92\"><img width=\"117\" alt=\"rmoura-92\" src=\"https://avatars.githubusercontent.com/u/419044?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/rlebosse\"><img width=\"117\" alt=\"rlebosse\" src=\"https://avatars.githubusercontent.com/u/2794137?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/rhymes\"><img width=\"117\" alt=\"rhymes\" src=\"https://avatars.githubusercontent.com/u/146201?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/luntta\"><img width=\"117\" alt=\"luntta\" src=\"https://avatars.githubusercontent.com/u/14221637?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/phil714\"><img width=\"117\" alt=\"phil714\" src=\"https://avatars.githubusercontent.com/u/7584581?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ordago\"><img width=\"117\" alt=\"ordago\" src=\"https://avatars.githubusercontent.com/u/6376814?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/odselsevier\"><img width=\"117\" alt=\"odselsevier\" src=\"https://avatars.githubusercontent.com/u/95745934?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ninesalt\"><img width=\"117\" alt=\"ninesalt\" src=\"https://avatars.githubusercontent.com/u/7952255?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/neuronet77\"><img width=\"117\" alt=\"neuronet77\" src=\"https://avatars.githubusercontent.com/u/4220037?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/craigcbrunner\"><img width=\"117\" alt=\"craigcbrunner\" src=\"https://avatars.githubusercontent.com/u/2780521?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/weston-sankey-mark43\"><img width=\"117\" alt=\"weston-sankey-mark43\" src=\"https://avatars.githubusercontent.com/u/97678695?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dwnste\"><img width=\"117\" alt=\"dwnste\" src=\"https://avatars.githubusercontent.com/u/17119722?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/nagyv\"><img width=\"117\" alt=\"nagyv\" src=\"https://avatars.githubusercontent.com/u/126671?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/stiig\"><img width=\"117\" alt=\"stiig\" src=\"https://avatars.githubusercontent.com/u/8639922?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/valentinoli\"><img width=\"117\" alt=\"valentinoli\" src=\"https://avatars.githubusercontent.com/u/23453691?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/vially\"><img width=\"117\" alt=\"vially\" src=\"https://avatars.githubusercontent.com/u/433598?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/bodryi\"><img width=\"117\" alt=\"bodryi\" src=\"https://avatars.githubusercontent.com/u/7326310?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tyler-dot-earth\"><img width=\"117\" alt=\"tyler-dot-earth\" src=\"https://avatars.githubusercontent.com/u/595711?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/trivikr\"><img width=\"117\" alt=\"trivikr\" src=\"https://avatars.githubusercontent.com/u/16024985?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/top-master\"><img width=\"117\" alt=\"top-master\" src=\"https://avatars.githubusercontent.com/u/31405473?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tvaliasek\"><img width=\"117\" alt=\"tvaliasek\" src=\"https://avatars.githubusercontent.com/u/8644946?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/tomekp\"><img width=\"117\" alt=\"tomekp\" src=\"https://avatars.githubusercontent.com/u/1856393?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tomsaleeba\"><img width=\"117\" alt=\"tomsaleeba\" src=\"https://avatars.githubusercontent.com/u/1773838?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/WIStudent\"><img width=\"117\" alt=\"WIStudent\" src=\"https://avatars.githubusercontent.com/u/2707930?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tmaier\"><img width=\"117\" alt=\"tmaier\" src=\"https://avatars.githubusercontent.com/u/350038?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Tiarhai\"><img width=\"117\" alt=\"Tiarhai\" src=\"https://avatars.githubusercontent.com/u/12871513?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/twarlop\"><img width=\"117\" alt=\"twarlop\" src=\"https://avatars.githubusercontent.com/u/2856082?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/tcgj\"><img width=\"117\" alt=\"tcgj\" src=\"https://avatars.githubusercontent.com/u/7994529?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/codehero7386\"><img width=\"117\" alt=\"codehero7386\" src=\"https://avatars.githubusercontent.com/u/56253286?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/christianwengert\"><img width=\"117\" alt=\"christianwengert\" src=\"https://avatars.githubusercontent.com/u/12936057?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/cgoinglove\"><img width=\"117\" alt=\"cgoinglove\" src=\"https://avatars.githubusercontent.com/u/86150470?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/canvasbh\"><img width=\"117\" alt=\"canvasbh\" src=\"https://avatars.githubusercontent.com/u/44477734?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/c0b41\"><img width=\"117\" alt=\"c0b41\" src=\"https://avatars.githubusercontent.com/u/2834954?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/avalla\"><img width=\"117\" alt=\"avalla\" src=\"https://avatars.githubusercontent.com/u/986614?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/arggh\"><img width=\"117\" alt=\"arggh\" src=\"https://avatars.githubusercontent.com/u/17210302?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/alfatv\"><img width=\"117\" alt=\"alfatv\" src=\"https://avatars.githubusercontent.com/u/62238673?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/agreene-coursera\"><img width=\"117\" alt=\"agreene-coursera\" src=\"https://avatars.githubusercontent.com/u/30501355?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/aduh95-test-account\"><img width=\"117\" alt=\"aduh95-test-account\" src=\"https://avatars.githubusercontent.com/u/93441190?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sartoshi-foot-dao\"><img width=\"117\" alt=\"sartoshi-foot-dao\" src=\"https://avatars.githubusercontent.com/u/99770068?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/zackbloom\"><img width=\"117\" alt=\"zackbloom\" src=\"https://avatars.githubusercontent.com/u/55347?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/zlawson-ut\"><img width=\"117\" alt=\"zlawson-ut\" src=\"https://avatars.githubusercontent.com/u/7375444?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/zachconner\"><img width=\"117\" alt=\"zachconner\" src=\"https://avatars.githubusercontent.com/u/11339326?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/yafkari\"><img width=\"117\" alt=\"yafkari\" src=\"https://avatars.githubusercontent.com/u/41365655?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/YehudaKremer\"><img width=\"117\" alt=\"YehudaKremer\" src=\"https://avatars.githubusercontent.com/u/946652?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/xhocquet\"><img width=\"117\" alt=\"xhocquet\" src=\"https://avatars.githubusercontent.com/u/8116516?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/willycamargo\"><img width=\"117\" alt=\"willycamargo\" src=\"https://avatars.githubusercontent.com/u/5041887?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/sercraig\"><img width=\"117\" alt=\"sercraig\" src=\"https://avatars.githubusercontent.com/u/24261518?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ardeois\"><img width=\"117\" alt=\"ardeois\" src=\"https://avatars.githubusercontent.com/u/1867939?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/CommanderRoot\"><img width=\"117\" alt=\"CommanderRoot\" src=\"https://avatars.githubusercontent.com/u/4395417?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/czj\"><img width=\"117\" alt=\"czj\" src=\"https://avatars.githubusercontent.com/u/14306?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/cbush06\"><img width=\"117\" alt=\"cbush06\" src=\"https://avatars.githubusercontent.com/u/15720146?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/Aarbel\"><img width=\"117\" alt=\"Aarbel\" src=\"https://avatars.githubusercontent.com/u/25119847?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/cfra\"><img width=\"117\" alt=\"cfra\" src=\"https://avatars.githubusercontent.com/u/1347051?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/csprance\"><img width=\"117\" alt=\"csprance\" src=\"https://avatars.githubusercontent.com/u/7902617?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/prattcmp\"><img width=\"117\" alt=\"prattcmp\" src=\"https://avatars.githubusercontent.com/u/1497950?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/subvertallchris\"><img width=\"117\" alt=\"subvertallchris\" src=\"https://avatars.githubusercontent.com/u/4097271?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/charlybillaud\"><img width=\"117\" alt=\"charlybillaud\" src=\"https://avatars.githubusercontent.com/u/31970410?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/Cretezy\"><img width=\"117\" alt=\"Cretezy\" src=\"https://avatars.githubusercontent.com/u/2672503?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/chao\"><img width=\"117\" alt=\"chao\" src=\"https://avatars.githubusercontent.com/u/55872?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/cellvinchung\"><img width=\"117\" alt=\"cellvinchung\" src=\"https://avatars.githubusercontent.com/u/5347394?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/cartfisk\"><img width=\"117\" alt=\"cartfisk\" src=\"https://avatars.githubusercontent.com/u/8764375?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/cyu\"><img width=\"117\" alt=\"cyu\" src=\"https://avatars.githubusercontent.com/u/2431?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/bryanjswift\"><img width=\"117\" alt=\"bryanjswift\" src=\"https://avatars.githubusercontent.com/u/9911?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/bedgerotto\"><img width=\"117\" alt=\"bedgerotto\" src=\"https://avatars.githubusercontent.com/u/4459657?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/eliOcs\"><img width=\"117\" alt=\"eliOcs\" src=\"https://avatars.githubusercontent.com/u/1283954?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/yoldar\"><img width=\"117\" alt=\"yoldar\" src=\"https://avatars.githubusercontent.com/u/1597578?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/efbautista\"><img width=\"117\" alt=\"efbautista\" src=\"https://avatars.githubusercontent.com/u/35430671?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/emuell\"><img width=\"117\" alt=\"emuell\" src=\"https://avatars.githubusercontent.com/u/11521600?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/EdgarSantiago93\"><img width=\"117\" alt=\"EdgarSantiago93\" src=\"https://avatars.githubusercontent.com/u/14806877?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/sweetro\"><img width=\"117\" alt=\"sweetro\" src=\"https://avatars.githubusercontent.com/u/6228717?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jeetiss\"><img width=\"117\" alt=\"jeetiss\" src=\"https://avatars.githubusercontent.com/u/6726016?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/DennisKofflard\"><img width=\"117\" alt=\"DennisKofflard\" src=\"https://avatars.githubusercontent.com/u/8669129?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/hoangsvit\"><img width=\"117\" alt=\"hoangsvit\" src=\"https://avatars.githubusercontent.com/u/11882322?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/davilima6\"><img width=\"117\" alt=\"davilima6\" src=\"https://avatars.githubusercontent.com/u/422130?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/akizor\"><img width=\"117\" alt=\"akizor\" src=\"https://avatars.githubusercontent.com/u/1052439?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/KaminskiDaniell\"><img width=\"117\" alt=\"KaminskiDaniell\" src=\"https://avatars.githubusercontent.com/u/27357868?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Cantabar\"><img width=\"117\" alt=\"Cantabar\" src=\"https://avatars.githubusercontent.com/u/6812207?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mrboomer\"><img width=\"117\" alt=\"mrboomer\" src=\"https://avatars.githubusercontent.com/u/5942912?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/danilat\"><img width=\"117\" alt=\"danilat\" src=\"https://avatars.githubusercontent.com/u/22763?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/danschalow\"><img width=\"117\" alt=\"danschalow\" src=\"https://avatars.githubusercontent.com/u/3527437?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/danmichaelo\"><img width=\"117\" alt=\"danmichaelo\" src=\"https://avatars.githubusercontent.com/u/434495?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/Cruaier\"><img width=\"117\" alt=\"Cruaier\" src=\"https://avatars.githubusercontent.com/u/5204940?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/wbaaron\"><img width=\"117\" alt=\"wbaaron\" src=\"https://avatars.githubusercontent.com/u/1048988?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/functino\"><img width=\"117\" alt=\"functino\" src=\"https://avatars.githubusercontent.com/u/415498?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/amitport\"><img width=\"117\" alt=\"amitport\" src=\"https://avatars.githubusercontent.com/u/1131991?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tekacs\"><img width=\"117\" alt=\"tekacs\" src=\"https://avatars.githubusercontent.com/u/63247?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Dogfalo\"><img width=\"117\" alt=\"Dogfalo\" src=\"https://avatars.githubusercontent.com/u/2775751?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/alirezahi\"><img width=\"117\" alt=\"alirezahi\" src=\"https://avatars.githubusercontent.com/u/16666064?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/aalepis\"><img width=\"117\" alt=\"aalepis\" src=\"https://avatars.githubusercontent.com/u/35684834?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/alexnj\"><img width=\"117\" alt=\"alexnj\" src=\"https://avatars.githubusercontent.com/u/683500?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/asmt3\"><img width=\"117\" alt=\"asmt3\" src=\"https://avatars.githubusercontent.com/u/1777709?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ahmadissa\"><img width=\"117\" alt=\"ahmadissa\" src=\"https://avatars.githubusercontent.com/u/9936573?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/adritasharma\"><img width=\"117\" alt=\"adritasharma\" src=\"https://avatars.githubusercontent.com/u/29271635?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/Adrrei\"><img width=\"117\" alt=\"Adrrei\" src=\"https://avatars.githubusercontent.com/u/22191685?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/adityapatadia\"><img width=\"117\" alt=\"adityapatadia\" src=\"https://avatars.githubusercontent.com/u/1086617?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/adamvigneault\"><img width=\"117\" alt=\"adamvigneault\" src=\"https://avatars.githubusercontent.com/u/18236120?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ajh-sr\"><img width=\"117\" alt=\"ajh-sr\" src=\"https://avatars.githubusercontent.com/u/71472057?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/adamdottv\"><img width=\"117\" alt=\"adamdottv\" src=\"https://avatars.githubusercontent.com/u/2363879?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/abannach\"><img width=\"117\" alt=\"abannach\" src=\"https://avatars.githubusercontent.com/u/43150303?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/superhawk610\"><img width=\"117\" alt=\"superhawk610\" src=\"https://avatars.githubusercontent.com/u/18172185?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ajschmidt8\"><img width=\"117\" alt=\"ajschmidt8\" src=\"https://avatars.githubusercontent.com/u/7400326?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Quorafind\"><img width=\"117\" alt=\"Quorafind\" src=\"https://avatars.githubusercontent.com/u/13215013?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/bducharme\"><img width=\"117\" alt=\"bducharme\" src=\"https://avatars.githubusercontent.com/u/4173569?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/azizk\"><img width=\"117\" alt=\"azizk\" src=\"https://avatars.githubusercontent.com/u/37282?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/azeemba\"><img width=\"117\" alt=\"azeemba\" src=\"https://avatars.githubusercontent.com/u/2160795?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/ayhankesicioglu\"><img width=\"117\" alt=\"ayhankesicioglu\" src=\"https://avatars.githubusercontent.com/u/36304312?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/avneetmalhotra\"><img width=\"117\" alt=\"avneetmalhotra\" src=\"https://avatars.githubusercontent.com/u/10562207?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/The-Flash\"><img width=\"117\" alt=\"The-Flash\" src=\"https://avatars.githubusercontent.com/u/24375820?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/atsawin\"><img width=\"117\" alt=\"atsawin\" src=\"https://avatars.githubusercontent.com/u/666663?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ash-jc-allen\"><img width=\"117\" alt=\"ash-jc-allen\" src=\"https://avatars.githubusercontent.com/u/39652331?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/apuyou\"><img width=\"117\" alt=\"apuyou\" src=\"https://avatars.githubusercontent.com/u/520053?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/arthurdenner\"><img width=\"117\" alt=\"arthurdenner\" src=\"https://avatars.githubusercontent.com/u/13774309?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Abourass\"><img width=\"117\" alt=\"Abourass\" src=\"https://avatars.githubusercontent.com/u/39917231?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tyndria\"><img width=\"117\" alt=\"tyndria\" src=\"https://avatars.githubusercontent.com/u/17138916?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/anthony0030\"><img width=\"117\" alt=\"anthony0030\" src=\"https://avatars.githubusercontent.com/u/13033263?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/andychongyz\"><img width=\"117\" alt=\"andychongyz\" src=\"https://avatars.githubusercontent.com/u/12697240?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/andrii-bodnar\"><img width=\"117\" alt=\"andrii-bodnar\" src=\"https://avatars.githubusercontent.com/u/29282228?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/superandrew213\"><img width=\"117\" alt=\"superandrew213\" src=\"https://avatars.githubusercontent.com/u/13059204?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/radarhere\"><img width=\"117\" alt=\"radarhere\" src=\"https://avatars.githubusercontent.com/u/3112309?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/kidonng\"><img width=\"117\" alt=\"kidonng\" src=\"https://avatars.githubusercontent.com/u/44045911?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/kevin-west-10x\"><img width=\"117\" alt=\"kevin-west-10x\" src=\"https://avatars.githubusercontent.com/u/65194914?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/kergekacsa\"><img width=\"117\" alt=\"kergekacsa\" src=\"https://avatars.githubusercontent.com/u/16637320?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/firesharkstudios\"><img width=\"117\" alt=\"firesharkstudios\" src=\"https://avatars.githubusercontent.com/u/17069637?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/kaspermeinema\"><img width=\"117\" alt=\"kaspermeinema\" src=\"https://avatars.githubusercontent.com/u/73821331?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/tykarol\"><img width=\"117\" alt=\"tykarol\" src=\"https://avatars.githubusercontent.com/u/9386320?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jvelten\"><img width=\"117\" alt=\"jvelten\" src=\"https://avatars.githubusercontent.com/u/48118068?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mellow-fellow\"><img width=\"117\" alt=\"mellow-fellow\" src=\"https://avatars.githubusercontent.com/u/19280122?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jmontoyaa\"><img width=\"117\" alt=\"jmontoyaa\" src=\"https://avatars.githubusercontent.com/u/158935?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jcalonso\"><img width=\"117\" alt=\"jcalonso\" src=\"https://avatars.githubusercontent.com/u/664474?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/jbelej\"><img width=\"117\" alt=\"jbelej\" src=\"https://avatars.githubusercontent.com/u/2229202?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jszobody\"><img width=\"117\" alt=\"jszobody\" src=\"https://avatars.githubusercontent.com/u/203749?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jorgeepc\"><img width=\"117\" alt=\"jorgeepc\" src=\"https://avatars.githubusercontent.com/u/3879892?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jondewoo\"><img width=\"117\" alt=\"jondewoo\" src=\"https://avatars.githubusercontent.com/u/1108358?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jonathanarbely\"><img width=\"117\" alt=\"jonathanarbely\" src=\"https://avatars.githubusercontent.com/u/18177203?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jsanchez034\"><img width=\"117\" alt=\"jsanchez034\" src=\"https://avatars.githubusercontent.com/u/761087?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/Jokcy\"><img width=\"117\" alt=\"Jokcy\" src=\"https://avatars.githubusercontent.com/u/2088642?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/chromacoma\"><img width=\"117\" alt=\"chromacoma\" src=\"https://avatars.githubusercontent.com/u/1535623?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/onhate\"><img width=\"117\" alt=\"onhate\" src=\"https://avatars.githubusercontent.com/u/980905?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/marc-mabe\"><img width=\"117\" alt=\"marc-mabe\" src=\"https://avatars.githubusercontent.com/u/302689?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Lucklj521\"><img width=\"117\" alt=\"Lucklj521\" src=\"https://avatars.githubusercontent.com/u/93632042?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/lucax88x\"><img width=\"117\" alt=\"lucax88x\" src=\"https://avatars.githubusercontent.com/u/6294464?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/lucaperret\"><img width=\"117\" alt=\"lucaperret\" src=\"https://avatars.githubusercontent.com/u/1887122?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ombr\"><img width=\"117\" alt=\"ombr\" src=\"https://avatars.githubusercontent.com/u/857339?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/louim\"><img width=\"117\" alt=\"louim\" src=\"https://avatars.githubusercontent.com/u/923718?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dolphinigle\"><img width=\"117\" alt=\"dolphinigle\" src=\"https://avatars.githubusercontent.com/u/7020472?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/leomelzer\"><img width=\"117\" alt=\"leomelzer\" src=\"https://avatars.githubusercontent.com/u/23313?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/leods92\"><img width=\"117\" alt=\"leods92\" src=\"https://avatars.githubusercontent.com/u/879395?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/galli-leo\"><img width=\"117\" alt=\"galli-leo\" src=\"https://avatars.githubusercontent.com/u/5339762?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dviry\"><img width=\"117\" alt=\"dviry\" src=\"https://avatars.githubusercontent.com/u/1230260?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/larowlan\"><img width=\"117\" alt=\"larowlan\" src=\"https://avatars.githubusercontent.com/u/555254?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/leaanthony\"><img width=\"117\" alt=\"leaanthony\" src=\"https://avatars.githubusercontent.com/u/1943904?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/hoangbits\"><img width=\"117\" alt=\"hoangbits\" src=\"https://avatars.githubusercontent.com/u/7990827?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/labohkip81\"><img width=\"117\" alt=\"labohkip81\" src=\"https://avatars.githubusercontent.com/u/36964869?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/kyleparisi\"><img width=\"117\" alt=\"kyleparisi\" src=\"https://avatars.githubusercontent.com/u/1286753?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/elkebab\"><img width=\"117\" alt=\"elkebab\" src=\"https://avatars.githubusercontent.com/u/6313468?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/profsmallpine\"><img width=\"117\" alt=\"profsmallpine\" src=\"https://avatars.githubusercontent.com/u/7328006?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/IanVS\"><img width=\"117\" alt=\"IanVS\" src=\"https://avatars.githubusercontent.com/u/4616705?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/huydod\"><img width=\"117\" alt=\"huydod\" src=\"https://avatars.githubusercontent.com/u/37580530?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/HussainAlkhalifah\"><img width=\"117\" alt=\"HussainAlkhalifah\" src=\"https://avatars.githubusercontent.com/u/43642162?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/HughbertD\"><img width=\"117\" alt=\"HughbertD\" src=\"https://avatars.githubusercontent.com/u/1580021?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/hiromi2424\"><img width=\"117\" alt=\"hiromi2424\" src=\"https://avatars.githubusercontent.com/u/191297?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/giacomocerquone\"><img width=\"117\" alt=\"giacomocerquone\" src=\"https://avatars.githubusercontent.com/u/9303791?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/roenschg\"><img width=\"117\" alt=\"roenschg\" src=\"https://avatars.githubusercontent.com/u/9590236?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/gjungb\"><img width=\"117\" alt=\"gjungb\" src=\"https://avatars.githubusercontent.com/u/3391068?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/geoffappleford\"><img width=\"117\" alt=\"geoffappleford\" src=\"https://avatars.githubusercontent.com/u/731678?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/gabiganam\"><img width=\"117\" alt=\"gabiganam\" src=\"https://avatars.githubusercontent.com/u/28859646?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/fuadscodes\"><img width=\"117\" alt=\"fuadscodes\" src=\"https://avatars.githubusercontent.com/u/60370584?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/dtrucs\"><img width=\"117\" alt=\"dtrucs\" src=\"https://avatars.githubusercontent.com/u/1926041?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ferdiusa\"><img width=\"117\" alt=\"ferdiusa\" src=\"https://avatars.githubusercontent.com/u/1997982?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/fgallinari\"><img width=\"117\" alt=\"fgallinari\" src=\"https://avatars.githubusercontent.com/u/6473638?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Gkleinereva\"><img width=\"117\" alt=\"Gkleinereva\" src=\"https://avatars.githubusercontent.com/u/23621633?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/epexa\"><img width=\"117\" alt=\"epexa\" src=\"https://avatars.githubusercontent.com/u/2198826?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/EnricoSottile\"><img width=\"117\" alt=\"EnricoSottile\" src=\"https://avatars.githubusercontent.com/u/10349653?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/elliotdickison\"><img width=\"117\" alt=\"elliotdickison\" src=\"https://avatars.githubusercontent.com/u/2523678?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/theJoeBiz\"><img width=\"117\" alt=\"theJoeBiz\" src=\"https://avatars.githubusercontent.com/u/189589?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Jmales\"><img width=\"117\" alt=\"Jmales\" src=\"https://avatars.githubusercontent.com/u/22914881?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jessica-coursera\"><img width=\"117\" alt=\"jessica-coursera\" src=\"https://avatars.githubusercontent.com/u/35155465?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/vith\"><img width=\"117\" alt=\"vith\" src=\"https://avatars.githubusercontent.com/u/3265539?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/janwilts\"><img width=\"117\" alt=\"janwilts\" src=\"https://avatars.githubusercontent.com/u/16721581?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/janklimo\"><img width=\"117\" alt=\"janklimo\" src=\"https://avatars.githubusercontent.com/u/7811733?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jamestiotio\"><img width=\"117\" alt=\"jamestiotio\" src=\"https://avatars.githubusercontent.com/u/18364745?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jcjmcclean\"><img width=\"117\" alt=\"jcjmcclean\" src=\"https://avatars.githubusercontent.com/u/1822574?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/Jbithell\"><img width=\"117\" alt=\"Jbithell\" src=\"https://avatars.githubusercontent.com/u/8408967?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/JakubHaladej\"><img width=\"117\" alt=\"JakubHaladej\" src=\"https://avatars.githubusercontent.com/u/77832677?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/jakemcallister\"><img width=\"117\" alt=\"jakemcallister\" src=\"https://avatars.githubusercontent.com/u/1185699?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/gaejabong\"><img width=\"117\" alt=\"gaejabong\" src=\"https://avatars.githubusercontent.com/u/978944?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/JacobMGEvans\"><img width=\"117\" alt=\"JacobMGEvans\" src=\"https://avatars.githubusercontent.com/u/27247160?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/mazoruss\"><img width=\"117\" alt=\"mazoruss\" src=\"https://avatars.githubusercontent.com/u/17625190?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/GreenJimmy\"><img width=\"117\" alt=\"GreenJimmy\" src=\"https://avatars.githubusercontent.com/u/39386?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n<tr><td><a href=\"https://github.com/intenzive\"><img width=\"117\" alt=\"intenzive\" src=\"https://avatars.githubusercontent.com/u/11055931?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/NaxYo\"><img width=\"117\" alt=\"NaxYo\" src=\"https://avatars.githubusercontent.com/u/1963876?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td><td><a href=\"https://github.com/ishendyweb\"><img width=\"117\" alt=\"ishendyweb\" src=\"https://avatars.githubusercontent.com/u/10582418?v=4&amp;s=117\" style=\"max-width: 100%;\"></a></td></tr>\n\n</tbody></table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">License</h2><a id=\"user-content-license\" class=\"anchor\" aria-label=\"Permalink: License\" href=\"#license\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The <a href=\"/transloadit/uppy/blob/main/LICENSE\">MIT License</a>.</p>\n</article>",
"loaded": true,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": [
{
"level": 1,
"text": "Uppy",
"anchor": "uppy-",
"htmlText": "Uppy"
},
{
"level": 2,
"text": "Example",
"anchor": "example",
"htmlText": "Example"
},
{
"level": 2,
"text": "Features",
"anchor": "features",
"htmlText": "Features"
},
{
"level": 2,
"text": "Installation",
"anchor": "installation",
"htmlText": "Installation"
},
{
"level": 2,
"text": "Documentation",
"anchor": "documentation",
"htmlText": "Documentation"
},
{
"level": 2,
"text": "Plugins",
"anchor": "plugins",
"htmlText": "Plugins"
},
{
"level": 3,
"text": "UI Elements",
"anchor": "ui-elements",
"htmlText": "UI Elements"
},
{
"level": 3,
"text": "Sources",
"anchor": "sources",
"htmlText": "Sources"
},
{
"level": 3,
"text": "Destinations",
"anchor": "destinations",
"htmlText": "Destinations"
},
{
"level": 3,
"text": "File Processing",
"anchor": "file-processing",
"htmlText": "File Processing"
},
{
"level": 3,
"text": "Miscellaneous",
"anchor": "miscellaneous",
"htmlText": "Miscellaneous"
},
{
"level": 2,
"text": "React",
"anchor": "react",
"htmlText": "React"
},
{
"level": 2,
"text": "Browser Support",
"anchor": "browser-support",
"htmlText": "Browser Support"
},
{
"level": 2,
"text": "FAQ",
"anchor": "faq",
"htmlText": "FAQ"
},
{
"level": 3,
"text": "Why not use <input type=\"file\">?",
"anchor": "why-not-use-input-typefile",
"htmlText": "Why not use &lt;input type=\"file\"&gt;?"
},
{
"level": 3,
"text": "Why is all this goodness free?",
"anchor": "why-is-all-this-goodness-free",
"htmlText": "Why is all this goodness free?"
},
{
"level": 3,
"text": "Does Uppy support S3 uploads?",
"anchor": "does-uppy-support-s3-uploads",
"htmlText": "Does Uppy support S3 uploads?"
},
{
"level": 3,
"text": "Can I use Uppy with Rails/Node.js/Go/PHP?",
"anchor": "can-i-use-uppy-with-railsnodejsgophp",
"htmlText": "Can I use Uppy with Rails/Node.js/Go/PHP?"
},
{
"level": 2,
"text": "Contributions are welcome",
"anchor": "contributions-are-welcome",
"htmlText": "Contributions are welcome"
},
{
"level": 2,
"text": "Used by",
"anchor": "used-by",
"htmlText": "Used by"
},
{
"level": 2,
"text": "Contributors",
"anchor": "contributors",
"htmlText": "Contributors"
},
{
"level": 2,
"text": "License",
"anchor": "license",
"htmlText": "License"
}
],
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Ftransloadit%2Fuppy"
}
},
{
"displayName": "LICENSE",
"repoName": "uppy",
"refName": "main",
"path": "LICENSE",
"preferredFileType": "license",
"tabName": "MIT",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Ftransloadit%2Fuppy"
}
},
{
"displayName": "SECURITY.md",
"repoName": "uppy",
"refName": "main",
"path": "SECURITY.md",
"preferredFileType": "security",
"tabName": "Security",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Ftransloadit%2Fuppy"
}
}
],
"overviewFilesProcessingTime": 0
}
},
"appPayload": {
"helpUrl": "https://docs.github.com",
"findFileWorkerPath": "/assets-cdn/worker/find-file-worker-1583894afd38.js",
"findInFileWorkerPath": "/assets-cdn/worker/find-in-file-worker-3a63a487027b.js",
"githubDevUrl": null,
"enabled_features": {
"code_nav_ui_events": false,
"overview_shared_code_dropdown_button": false,
"react_blob_overlay": false,
"copilot_conversational_ux_embedding_update": false,
"copilot_smell_icebreaker_ux": true,
"copilot_workspace": false
}
}
}
}
{
"accept-ranges": "bytes",
"cache-control": "max-age=0, private, must-revalidate",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com api.githubcopilot.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com/v1/engines/github-completion/completions proxy.enterprise.githubcopilot.com/v1/engines/github-completion/completions *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/",
"content-type": "text/html; charset=utf-8",
"date": "Sat, 27 Jul 2024 06:37:15 GMT",
"etag": "655a0c47ee363c9cb772e39bc34d251c",
"referrer-policy": "no-referrer-when-downgrade",
"server": "GitHub.com",
"set-cookie": "logged_in=no; Path=/; Domain=github.com; Expires=Sun, 27 Jul 2025 06:37:14 GMT; HttpOnly; Secure; SameSite=Lax",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-request-id": "8C92:320C21:D79FEF:11256D7:66A4959A",
"x-xss-protection": "0"
}