Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vuejs-uploader

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vuejs-uploader

Vue multipart uploader component

  • 0.6.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
242
decreased by-43.98%
Maintainers
1
Weekly downloads
 
Created
Source

Vuejs Uploader

Travis Build Version Coveralls github Downloads

Multipart uploader Vue component.

This uploader will optionally upload files in multipart chunks. This get's around max upload sizes allowing you to upload large files.

If prop multiple is true a file list is rendered on selecting files otherwise file upload will begin on selection.

Drag is supported and when files are dragged over the uploader the class vuejs-uploader--dragged is added to the root element.

Remaining upload parts

For resumable uploads we need to know what parts have already been uploaded so we don't bother re uploading them. This component makes use of a response property that returns an array of parts remaining that still need to be uploaded. If this property is in the response it will remove any parts in the queue that are not in that array. To make use of this property it expects to be formatted as meta.remainingParts.

Install

npm install vuejs-uploader

Usage

Basic

<uploader end-point="http://localhost:5000"></uploader>

Multiple Files

<uploader end-point="http://localhost:5000" :multiple="true"></uploader>

Multipart upload, with custom Browse button using slot api

<uploader end-point="http://localhost:5000" :multipart="true">
    <button slot="browse-btn">Select File</button>
</uploader>

<uploader end-point="http://localhost:5000" :multipart="true">
    <img slot="browse-btn" src="someimg.jpg" />
</uploader>

Available props

PropTypeRequiredDefaultDescription
endPointStringyupServer end point to post requests
multipleBooleanTo allow multiple files to be added to the upload queue
multipartBooleanSend files larger than multipartChunkSize in parts
multipartChunkSizeNumber2097152Size of multipart chunks in bytes
maxUploadsNumber5Maximum number of file that can be added to the queue
maxThumbWidthNumber80Maximum width of preview image created
maxThumbHeightNumber80Maximum height of preview image created
acceptStringMime types to accept
userDefinedPropertiesArrayarray of objects defined with property and optional required properties
errorHandlerFunctionFunction passed in to handle http errors
headersObjectHeaders can be added to the http requests
disabledBooleanfalseDisable the uploader

Slots

Slot nameSingle file uploaderMulti file uploaderDescription
browse-btnXXProvide your own browse button html
clear-btnXProvide your own upload list clear button html
upload-btnXProvide your own upload list upload button html
extraXSlot to add extra form elements to send along with the upload

Demo

To demo the uploader you need a server, there is a simple php example in server/php that uses php's built in server.

Other examples will follow.

chmod 777 server/uploads
cd server/php
php -S localhost:5000

Keywords

FAQs

Package last updated on 13 Mar 2018

Did you know?

Socket

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

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc