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 🙏

© 2026 – Pkg Stats / Ryan Hefner

responsive-image-for-static-site

v0.1.11

Published

Adds support of responsive image loading for static htmls.

Readme

responsive-image-for-static-site

Problem: if you have high-quality images at website then slow connection can produce bad user experience, because images loads slowly.

Solution:

  1. Responsive images. Most of users use smartphones and do not need big images (because screen of smartphone is rather small). On the other hand, you want good quality (because it sells, of course). I.e. browser should load image of appopriate size - large image for big displays and small image for smartphones).

  2. Progressive images - you can show low-quality small-sized (may be, blurred) image stub while high-quality image loads. Looks nice (see example picture below).

  3. But what if you have good old static site? You cannot use all that stuff. But you can use responsive-image-for-static-site.

How it works

This lib search for all html files at specified folder, then parse it to get all images from <img> tags, then creates set of cache files for responsive image loading (100px, 200px, ... 1500px), and adds stub (blurred) image to all <img> tags; also add some scripts to html files to make it all work (i.e. to apply stub images and to load image of appropiate size).

Under the hood

 <img src="img/item42/sample.jpg">

becomes

 <img src="cacheFolder/58a2fca2.jpg" rifs-stub="data:image/png;base64,iVBOR..." rifs-original="img/item42/sample.jpg">

with some js scripts added at the end of the html file (if JS turned off then it loads 800px image).

Installation

npm install -g responsive-image-for-static-site

Usage

There are two mandatory params: (1) folder of html files and (2) folder for set of cache files

  rifs . cacheFolder

How it looks like

demo-animated-gif