npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

angular-ui-uploader

v1.4.1

Published

ui-uploader is a single/multiple and high customizable file uploader and the most important is very easy to implement.

Downloads

4,249

Readme

ui-uploader Build Status npm version Bower version Join the chat at https://gitter.im/angular-ui/ui-uploader

ui-uploader is a single/multiple and high customizable file uploader and the most important is very easy to implement.

  • Upload multiple or single files
  • Cancel or remove upload when you want.
  • Allows concurrent Upload
  • Totally cutomizable

You can use with html5, jquery or every library or framework:

The main objective of ui-uploader is to have a user control, clean, simple, customizable, and above all very easy to implement.

Try the demo.

Compatibility

Because this project uses FormData, it does not work on IE9 or earlier.

Requirements

  • AngularJS

Usage

You can get it from Bower

bower install angular-ui-uploader

Load the script files in your application:

<script type="text/javascript" src="bower_components/angular/angular.js"></script>
<script type="text/javascript" src="bower_components/angular-ui-uploader/dist/uploader.js"></script>

Add the specific module to your dependencies:

angular.module('myApp', ['ui.uploader', ...])

Now you can use the ui-uploader methods.

$uiUploader.addFiles(files);
$uiUploader.remove(file);
$uiUploader.removeAll();

Configure ui-uploader callbacks and start!

$uiUploader.startUpload({
                url: 'http://my_domain.com',
                concurrency: 2,
                onProgress: function(file) {
                    // file contains a File object
                    console.log(file);
                },
                onUploadSuccess: function(file) {
                    // file contains a File object
                    console.log(file);
                },
                onCompleted: function(file, responseText, status) {
                    // file contains a File object
                    console.log(file);
                    // responseText contains the server response as text
                    console.log(responseText);
                    // status contains the status of the response
                    console.log(status);
                },
                onCompletedAll: function(files) {
                	// files is an array of File objects
                	console.log(files);
                }
            });

Perform CORS AJAX requests by setting the options.withCredentials flag to true!

$uiUploader.startUpload({
                url: 'http://my_domain.com/path/to/api-endpoint',
                options: {
                	withCredentials: true
                },
                onProgress: function(file) {
                    // do stuff
                },
                onUploadSuccess: function(file) {
                    // do stuff
                },
                onCompleted: function(file, responseText, status) {
                    // do stuff
                },
                onCompletedAll: function(files) {
                	// do stuff
                }
            });

Configure custom request headers by options.headers field

$uiUploader.startUpload({
                url: 'http://my_domain.com',
                concurrency: 2,
                headers: {
                    'Accept': 'application/json'
                },
                onCompletedAll: function(files) {
                	// files is an array of File objects
                	console.log(files);
                }
            });

Development

We use Karma and jshint to ensure the quality of the code. The easiest way to run these checks is to use grunt:

npm install -g gulp-cli
npm install && bower install
gulp

The karma task will try to open Firefox and Chrome as browser in which to run the tests. Make sure this is available or change the configuration in karma.conf.js

Gulp watch

gulp watch will automatically test your code and build a release whenever source files change.

How to release

Use gulp to bump version, build and create a tag. Then push to GitHub:

gulp release [--patch|--minor|--major]
git push --tags origin master # push everything to GitHub

Travis will take care of testing and publishing to npm's registry (bower will pick up the change automatically). Finally create a release on GitHub from the tag created by Travis.