Uppy

The next open source file uploader for web browsers

README


Uppy logo: a superman puppy in a pink suit

||
|-|-|-|-|
Tests
Deploys

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




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

Example


Code used in the above example:

  1. ``` js
  2. import Uppy from '@uppy/core'
  3. import Dashboard from '@uppy/dashboard'
  4. import RemoteSources from '@uppy/remote-sources'
  5. import ImageEditor from '@uppy/image-editor'
  6. import Webcam from '@uppy/webcam'
  7. import Tus from '@uppy/tus'

  8. const uppy = new Uppy()
  9.   .use(Dashboard, { trigger: '#select-files' })
  10.   .use(RemoteSources, { companionUrl: 'https://companion.uppy.io' })
  11.   .use(Webcam, { target: Dashboard })
  12.   .use(ImageEditor, { target: Dashboard })
  13.   .use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
  14.   .on('complete', (result) => {
  15.     console.log('Upload result:', result)
  16.   })
  17. ```

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 :zap:
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 :sparkles:
Optional file recovery (after a browser crash) with Golden Retriever
Speaks several languages (i18n) :earth\_africa:
Built with accessibility in mind
Free for the world, forever (as in beer 🍺, pizza 🍕, and liberty 🗽)
Cute as a puppy, also accepts cat pictures :dog:

Installation


  1. ``` sh
  2. npm install @uppy/core @uppy/dashboard @uppy/tus
  3. ```

Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v3.3.1/uppy.min.css), either to your HTML page’s `` 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. ``` html
  2. <link href="https://releases.transloadit.com/uppy/v3.3.1/uppy.min.css" rel="stylesheet">
  3. <div id="files-drag-drop"></div>
  4. <script type="module">
  5.   import { Uppy, Dashboard, Tus } from "https://releases.transloadit.com/uppy/v3.3.1/uppy.min.mjs"
  6.   const uppy = new Uppy()
  7.   uppy.use(Dashboard, { target: '#files-drag-drop' })
  8.   uppy.use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
  9. </script>
  10. ```

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



UI Elements


[Dashboard](https://uppy.io/docs/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](https://uppy.io/docs/progress-bar/) — minimal progress bar that fills itself when upload progresses
[Status Bar](https://uppy.io/docs/status-bar/) — more detailed progress, pause/resume/cancel buttons, percentage, speed, uploaded/total sizes (included by default with Dashboard)
[Informer](https://uppy.io/docs/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](https://uppy.io/docs/drag-drop/) — plain drag and drop area
[File Input](https://uppy.io/docs/file-input/) — even plainer “select files” button
[Webcam](https://uppy.io/docs/webcam/) — snap and record those selfies 📷
ⓒ [Google Drive](https://uppy.io/docs/google-drive/) — import files from Google Drive
ⓒ [Dropbox](https://uppy.io/docs/dropbox/) — import files from Dropbox
ⓒ [Box](https://uppy.io/docs/box/) — import files from Box
ⓒ [Instagram](https://uppy.io/docs/instagram/) — import images and videos from Instagram
ⓒ [Facebook](https://uppy.io/docs/facebook/) — import images and videos from Facebook
ⓒ [OneDrive](https://uppy.io/docs/onedrive/) — import files from Microsoft OneDrive
ⓒ [Import From URL](https://uppy.io/docs/url/) — import direct URLs from anywhere on the web

The ⓒ mark means that [@uppy/companion](https://uppy.io/docs/companion), a server-side component, is needed for a plugin to work.

Destinations


[Tus](https://uppy.io/docs/tus/) — resumable uploads via the open tus standard
[XHR Upload](https://uppy.io/docs/xhr-upload/) — regular uploads for any backend out there (like Apache, Nginx)
[AWS S3](https://uppy.io/docs/aws-s3/) — plain upload to AWS S3 or compatible services
[AWS S3 Multipart](https://uppy.io/docs/aws-s3-multipart/) — S3-style “Multipart” upload to AWS or compatible services

File Processing


[Transloadit](https://uppy.io/docs/transloadit/) — support for Transloadit’s robust file uploading and encoding backend

Miscellaneous


[Golden Retriever](https://uppy.io/docs/golden-retriever/) — restores files after a browser crash, like it’s nothing
[Thumbnail Generator](https://uppy.io/docs/thumbnail-generator/) — generates image previews (included by default with Dashboard)
* [`Form`](https://uppy.io/docs/form/) — collects metadata from `
` right before an Uppy upload, then optionally appends results back to the form
[Redux](https://uppy.io/docs/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, Safari and Edge.

We still provide a bundle which should work on IE11, but we are not running tests on it.

Polyfills


Here’s a list of polyfills you’ll need to include to make Uppy work in older browsers, such as IE11:


If you’re using a bundler, you need import them before Uppy:

  1. ``` js
  2. import 'core-js'
  3. import 'whatwg-fetch'
  4. import 'abortcontroller-polyfill/dist/polyfill-patch-fetch'
  5. // Order matters: AbortController needs fetch which needs Promise (provided by core-js).

  6. import 'md-gum-polyfill'
  7. import ResizeObserver from 'resize-observer-polyfill'

  8. window.ResizeObserver ??= ResizeObserver

  9. export { default } from '@uppy/core'
  10. export * from '@uppy/core'
  11. ```

If you’re using Uppy from CDN, those polyfills are already included in the legacy
bundle, so no need to include anything additionally:

  1. ``` html
  2. <script src="https://releases.transloadit.com/uppy/v3.3.1/uppy.legacy.min.js"></script>
  3. ```

FAQ


### Why not use ``?

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 `` 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](https://uppy.io/docs/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


Contributor’s guide in [.github/CONTRIBUTING.md](.github/CONTRIBUTING.md)
Changelog to track our release progress (we aim to roll out a release every month): [CHANGELOG.md](CHANGELOG.md)

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



[arturi](https://github.com/arturi) |[goto-bus-stop](https://github.com/goto-bus-stop) |[kvz](https://github.com/kvz) |[ifedapoolarewaju](https://github.com/ifedapoolarewaju) |[aduh95](https://github.com/aduh95) |[hedgerh](https://github.com/hedgerh) |
:---: |:---: |:---: |:---: |:---: |:---: |

[AJvanLoon](https://github.com/AJvanLoon) |[nqst](https://github.com/nqst) |[Murderlon](https://github.com/Murderlon) |[mifi](https://github.com/mifi) |[lakesare](https://github.com/lakesare) |[kiloreux](https://github.com/kiloreux) |
:---: |:---: |:---: |:---: |:---: |:---: |

[github-actions[bot]](https://github.com/apps/github-actions) |[sadovnychyi](https://github.com/sadovnychyi) |[samuelayo](https://github.com/samuelayo) |[richardwillars](https://github.com/richardwillars) |[ajkachnic](https://github.com/ajkachnic) |[dependabot[bot]](https://github.com/apps/dependabot) |
:---: |:---: |:---: |:---: |:---: |:---: |
[github-actions\[bot\]](https://github.com/apps/github-actions) |sadovnychyi |samuelayo |richardwillars |ajkachnic |[dependabot\[bot\]](https://github.com/apps/dependabot) |

[zcallan](https://github.com/zcallan) |[tim-kos](https://github.com/tim-kos) |[YukeshShr](https://github.com/YukeshShr) |[janko](https://github.com/janko) |[wilkoklak](https://github.com/wilkoklak) |[oliverpool](https://github.com/oliverpool) |
:---: |:---: |:---: |:---: |:---: |:---: |

[Botz](https://github.com/Botz) |[mcallistertyler](https://github.com/mcallistertyler) |[mokutsu-coursera](https://github.com/mokutsu-coursera) |[DJWassink](https://github.com/DJWassink) |[timodwhit](https://github.com/timodwhit) |[taoqf](https://github.com/taoqf) |
:---: |:---: |:---: |:---: |:---: |:---: |

[mrbatista](https://github.com/mrbatista) |[tuoxiansp](https://github.com/tuoxiansp) |[dominiceden](https://github.com/dominiceden) |[elenalape](https://github.com/elenalape) |[mejiaej](https://github.com/mejiaej) |[gavboulton](https://github.com/gavboulton) |
:---: |:---: |:---: |:---: |:---: |:---: |

[Hawxy](https://github.com/Hawxy) |[juliangruber](https://github.com/juliangruber) |[bertho-zero](https://github.com/bertho-zero) |[LiviaMedeiros](https://github.com/LiviaMedeiros) |[tranvansang](https://github.com/tranvansang) |[ap--](https://github.com/ap--) |
:---: |:---: |:---: |:---: |:---: |:---: |

[MikeKovarik](https://github.com/MikeKovarik) |[pauln](https://github.com/pauln) |[toadkicker](https://github.com/toadkicker) |[ofhope](https://github.com/ofhope) |[eltociear](https://github.com/eltociear) |[johnnyperkins](https://github.com/johnnyperkins) |
:---: |:---: |:---: |:---: |:---: |:---: |

[dargmuesli](https://github.com/dargmuesli) |[manuelkiessling](https://github.com/manuelkiessling) |[nndevstudio](https://github.com/nndevstudio) |[ogtfaber](https://github.com/ogtfaber) |[sksavant](https://github.com/sksavant) |[suchoproduction](https://github.com/suchoproduction) |
:---: |:---: |:---: |:---: |:---: |:---: |

[yonahforst](https://github.com/yonahforst) |[a-kriya](https://github.com/a-kriya) |[bencergazda](https://github.com/bencergazda) |[stephentuso](https://github.com/stephentuso) |[jhen0409](https://github.com/jhen0409) |[mskelton](https://github.com/mskelton) |
:---: |:---: |:---: |:---: |:---: |:---: |

[ahmedkandel](https://github.com/ahmedkandel) |[btrice](https://github.com/btrice) |[AndrwM](https://github.com/AndrwM) |[behnammodi](https://github.com/behnammodi) |[BePo65](https://github.com/BePo65) |[bradedelman](https://github.com/bradedelman) |
:---: |:---: |:---: |:---: |:---: |:---: |

[camiloforero](https://github.com/camiloforero) |[craigjennings11](https://github.com/craigjennings11) |[davekiss](https://github.com/davekiss) |[denysdesign](https://github.com/denysdesign) |[ethanwillis](https://github.com/ethanwillis) |[frobinsonj](https://github.com/frobinsonj) |
:---: |:---: |:---: |:---: |:---: |:---: |

[geertclerx](https://github.com/geertclerx) |[ghasrfakhri](https://github.com/ghasrfakhri) |[jasonbosco](https://github.com/jasonbosco) |[jedwood](https://github.com/jedwood) |[dogrocker](https://github.com/dogrocker) |[lafe](https://github.com/lafe) |
:---: |:---: |:---: |:---: |:---: |:---: |

[mactavishz](https://github.com/mactavishz) |[maferland](https://github.com/maferland) |[Martin005](https://github.com/Martin005) |[martiuslim](https://github.com/martiuslim) |[MatthiasKunnen](https://github.com/MatthiasKunnen) |[msand](https://github.com/msand) |
:---: |:---: |:---: |:---: |:---: |:---: |

[paescuj](https://github.com/paescuj) |[richartkeil](https://github.com/richartkeil) |[richmeij](https://github.com/richmeij) |[rdimartino](https://github.com/rdimartino) |[rosenfeld](https://github.com/rosenfeld) |[jrschumacher](https://github.com/jrschumacher) |
:---: |:---: |:---: |:---: |:---: |:---: |

[SlavikTraktor](https://github.com/SlavikTraktor) |[ThomasG77](https://github.com/ThomasG77) |[sparanoid](https://github.com/sparanoid) |[zhuangya](https://github.com/zhuangya) |[yaegor](https://github.com/yaegor) |[allenfantasy](https://github.com/allenfantasy) |
:---: |:---: |:---: |:---: |:---: |:---: |

[Zyclotrop-j](https://github.com/Zyclotrop-j) |[anark](https://github.com/anark) |[fortrieb](https://github.com/fortrieb) |[heocoi](https://github.com/heocoi) |[jarey](https://github.com/jarey) |[muhammadInam](https://github.com/muhammadInam) |
:---: |:---: |:---: |:---: |:---: |:---: |

[rettgerst](https://github.com/rettgerst) |[mkabatek](https://github.com/mkabatek) |[jukakoski](https://github.com/jukakoski) |[olemoign](https://github.com/olemoign) |[ajschmidt8](https://github.com/ajschmidt8) |[superhawk610](https://github.com/superhawk610) |
:---: |:---: |:---: |:---: |:---: |:---: |

[abannach](https://github.com/abannach) |[adamelmore](https://github.com/adamelmore) |[ajh-sr](https://github.com/ajh-sr) |[adamvigneault](https://github.com/adamvigneault) |[Adrrei](https://github.com/Adrrei) |[adritasharma](https://github.com/adritasharma) |
:---: |:---: |:---: |:---: |:---: |:---: |

[ahmadissa](https://github.com/ahmadissa) |[asmt3](https://github.com/asmt3) |[alexnj](https://github.com/alexnj) |[aalepis](https://github.com/aalepis) |[Dogfalo](https://github.com/Dogfalo) |[tekacs](https://github.com/tekacs) |
:---: |:---: |:---: |:---: |:---: |:---: |

[amitport](https://github.com/amitport) |[functino](https://github.com/functino) |[radarhere](https://github.com/radarhere) |[superandrew213](https://github.com/superandrew213) |[andrii-bodnar](https://github.com/andrii-bodnar) |[andychongyz](https://github.com/andychongyz) |
:---: |:---: |:---: |:---: |:---: |:---: |

[anthony0030](https://github.com/anthony0030) |[tyndria](https://github.com/tyndria) |[Abourass](https://github.com/Abourass) |[arthurdenner](https://github.com/arthurdenner) |[apuyou](https://github.com/apuyou) |[ash-jc-allen](https://github.com/ash-jc-allen) |
:---: |:---: |:---: |:---: |:---: |:---: |

[atsawin](https://github.com/atsawin) |[ayhankesicioglu](https://github.com/ayhankesicioglu) |[azeemba](https://github.com/azeemba) |[azizk](https://github.com/azizk) |[bducharme](https://github.com/bducharme) |[Quorafind](https://github.com/Quorafind) |
:---: |:---: |:---: |:---: |:---: |:---: |

[wbaaron](https://github.com/wbaaron) |[bedgerotto](https://github.com/bedgerotto) |[cyu](https://github.com/cyu) |[cartfisk](https://github.com/cartfisk) |[cellvinchung](https://github.com/cellvinchung) |[chao](https://github.com/chao) |
:---: |:---: |:---: |:---: |:---: |:---: |

[Cretezy](https://github.com/Cretezy) |[charlybillaud](https://github.com/charlybillaud) |[csprance](https://github.com/csprance) |[cfra](https://github.com/cfra) |[Aarbel](https://github.com/Aarbel) |[cbush06](https://github.com/cbush06) |
:---: |:---: |:---: |:---: |:---: |:---: |

[czj](https://github.com/czj) |[CommanderRoot](https://github.com/CommanderRoot) |[ardeois](https://github.com/ardeois) |[sercraig](https://github.com/sercraig) |[Cruaier](https://github.com/Cruaier) |[danmichaelo](https://github.com/danmichaelo) |
:---: |:---: |:---: |:---: |:---: |:---: |

[danschalow](https://github.com/danschalow) |[danilat](https://github.com/danilat) |[mrboomer](https://github.com/mrboomer) |[Cantabar](https://github.com/Cantabar) |[KaminskiDaniell](https://github.com/KaminskiDaniell) |[akizor](https://github.com/akizor) |
:---: |:---: |:---: |:---: |:---: |:---: |

[davilima6](https://github.com/davilima6) |[DennisKofflard](https://github.com/DennisKofflard) |[jeetiss](https://github.com/jeetiss) |[sweetro](https://github.com/sweetro) |[EdgarSantiago93](https://github.com/EdgarSantiago93) |[emuell](https://github.com/emuell) |
:---: |:---: |:---: |:---: |:---: |:---: |

[efbautista](https://github.com/efbautista) |[yoldar](https://github.com/yoldar) |[eliOcs](https://github.com/eliOcs) |[EnricoSottile](https://github.com/EnricoSottile) |[epexa](https://github.com/epexa) |[Gkleinereva](https://github.com/Gkleinereva) |
:---: |:---: |:---: |:---: |:---: |:---: |

[fgallinari](https://github.com/fgallinari) |[ferdiusa](https://github.com/ferdiusa) |[dtrucs](https://github.com/dtrucs) |[gabiganam](https://github.com/gabiganam) |[geoffappleford](https://github.com/geoffappleford) |[gjungb](https://github.com/gjungb) |
:---: |:---: |:---: |:---: |:---: |:---: |

[roenschg](https://github.com/roenschg) |[HughbertD](https://github.com/HughbertD) |[HussainAlkhalifah](https://github.com/HussainAlkhalifah) |[huydod](https://github.com/huydod) |[IanVS](https://github.com/IanVS) |[ishendyweb](https://github.com/ishendyweb) |
:---: |:---: |:---: |:---: |:---: |:---: |

[NaxYo](https://github.com/NaxYo) |[intenzive](https://github.com/intenzive) |[GreenJimmy](https://github.com/GreenJimmy) |[mazoruss](https://github.com/mazoruss) |[JacobMGEvans](https://github.com/JacobMGEvans) |[gaejabong](https://github.com/gaejabong) |
:---: |:---: |:---: |:---: |:---: |:---: |

[JakubHaladej](https://github.com/JakubHaladej) |[Jbithell](https://github.com/Jbithell) |[jcjmcclean](https://github.com/jcjmcclean) |[jamestiotio](https://github.com/jamestiotio) |[janklimo](https://github.com/janklimo) |[janwilts](https://github.com/janwilts) |
:---: |:---: |:---: |:---: |:---: |:---: |

[vith](https://github.com/vith) |[jessica-coursera](https://github.com/jessica-coursera) |[Jmales](https://github.com/Jmales) |[theJoeBiz](https://github.com/theJoeBiz) |[profsmallpine](https://github.com/profsmallpine) |[chromacoma](https://github.com/chromacoma) |
:---: |:---: |:---: |:---: |:---: |:---: |

[jsanchez034](https://github.com/jsanchez034) |[jonathanarbely](https://github.com/jonathanarbely) |[jderrough](https://github.com/jderrough) |[jorgeepc](https://github.com/jorgeepc) |[jszobody](https://github.com/jszobody) |[jcalonso](https://github.com/jcalonso) |
:---: |:---: |:---: |:---: |:---: |:---: |

[jmontoyaa](https://github.com/jmontoyaa) |[mellow-fellow](https://github.com/mellow-fellow) |[tykarol](https://github.com/tykarol) |[kaspermeinema](https://github.com/kaspermeinema) |[firesharkstudios](https://github.com/firesharkstudios) |[kevin-west-10x](https://github.com/kevin-west-10x) |
:---: |:---: |:---: |:---: |:---: |:---: |

[elkebab](https://github.com/elkebab) |[kyleparisi](https://github.com/kyleparisi) |[labohkip81](https://github.com/labohkip81) |[leaanthony](https://github.com/leaanthony) |[larowlan](https://github.com/larowlan) |[dviry](https://github.com/dviry) |
:---: |:---: |:---: |:---: |:---: |:---: |

[galli-leo](https://github.com/galli-leo) |[leods92](https://github.com/leods92) |[louim](https://github.com/louim) |[ombr](https://github.com/ombr) |[lucaperret](https://github.com/lucaperret) |[lucax88x](https://github.com/lucax88x) |
:---: |:---: |:---: |:---: |:---: |:---: |

[onhate](https://github.com/onhate) |[mperrando](https://github.com/mperrando) |[marcosthejew](https://github.com/marcosthejew) |[marcusforsberg](https://github.com/marcusforsberg) |[Acconut](https://github.com/Acconut) |[martin-brennan](https://github.com/martin-brennan) |
:---: |:---: |:---: |:---: |:---: |:---: |

[masaok](https://github.com/masaok) |[mattfik](https://github.com/mattfik) |[mjesuele](https://github.com/mjesuele) |[matthewhartstonge](https://github.com/matthewhartstonge) |[mauricioribeiro](https://github.com/mauricioribeiro) |[hrsh](https://github.com/hrsh) |
:---: |:---: |:---: |:---: |:---: |:---: |

[mhulet](https://github.com/mhulet) |[mkopinsky](https://github.com/mkopinsky) |[achmiral](https://github.com/achmiral) |[boudra](https://github.com/boudra) |[mnafees](https://github.com/mnafees) |[shahimclt](https://github.com/shahimclt) |
:---: |:---: |:---: |:---: |:---: |:---: |

[mogzol](https://github.com/mogzol) |[navruzm](https://github.com/navruzm) |[marton-laszlo-attila](https://github.com/marton-laszlo-attila) |[pleasespammelater](https://github.com/pleasespammelater) |[naveed-ahmad](https://github.com/naveed-ahmad) |[nicojones](https://github.com/nicojones) |
:---: |:---: |:---: |:---: |:---: |:---: |

[coreprocess](https://github.com/coreprocess) |[nil1511