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

@webdeveric/image-preloader

v0.5.0

Published

Preload images using promises

Downloads

5

Readme

Image Preloader

dependencies Status devDependencies Status

Preload images using promises.

Installation

npm install @webdeveric/image-preloader --save

Prerequisites

Preloader uses promises, which are a part of ECMAScript 2015 (ES6), so you'll need a polyfill for older browsers.

Example Usage (es2015)

import Preloader from '@webdeveric/image-preloader';

let loader = new Preloader( { images: [
  'http://placekitten.com/200/200',
  'http://placekitten.com/400/400',
] } );

loader.start().then( results => {
  console.log( results );
}, error => {
  console.error( error );
});

Settings

The constructor takes one argument, which is an object of settings.

images

The images setting can be any iterable that has a forEach method, like Array or Set.

let myImages = [
  'eric.jpg',
  'ginger.jpg'
];

let loader = new Preloader( { images: myImages } );
let myImages = new Set();
myImages.add('eric.jpg');
myImages.add('ginger.jpg');
myImages.add('ginger.jpg');

let loader = new Preloader( { images: myImages } );

timeout

Number of milliseconds. The default is 30000.

let loader = new Preloader( {
  images: myImages,
  timeout: 10000
} );

beforeStart

beforeStart is optional and defaults to an empty function.

let loader = new Preloader( {
  images: myImages,
  beforeStart: function() {
    // Do some stuff here, like resetting a progress bar to zero.
    // You can abort the preloader by returning false or by throwing an error.
    return false;
  }
} );

onProgress

onProgress is optional and defaults to an empty function.

This function is called every time an image completes or fails.

onProgress receives two arguments, tick and preloader. The tick object contains four fields that let you know what happened. preloader is the Preloader instance, which you can use to check the percent complete.

tick object

{
  settings: Object,
  loaded: Boolean,
  image: Image object or null,
  error: Error object or null
}

Example: Setting progress bar

let loader = new Preloader( {
  images: myImages,
  onProgress: function( tick, preloader ) {
    if ( tick.loaded ) {
      console.log( tick.image );
    } else {
      console.log( tick.error );
    }

    // You can set a progress bar value using preloader.percentComplete
    let progress = document.getElementById('preload-progress');
    progress.setAttribute('value', preloader.percentComplete );
  }
} );

Properties

length

The number of items in the images object.

completed

The number of images that have loaded.

percentComplete

This is a float between 0 and 1 that represents the percent completed. It may be used to set the value of a progress bar.