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

auto-sizes

v1.0.4

Published

Automatic sizes attribute calculator for responsive images. Extracted from lazysizes by Alexander Farkas.

Readme

auto-sizes

Automatic sizes attribute calculation for responsive images.

Note: Extracted from lazysizes by Alexander Farkas. This is a lightweight, focused version containing only the automatic sizes calculation feature (~3.3KB minified vs 7.8KB for full lazysizes).

Features

  • 🎯 Automatic calculation of sizes attribute from element width
  • 📦 Tiny size (~2.2KB minified, ~1KB gzipped)
  • 🚀 High performance with RAF batching and debounced resize
  • 🖼️ Smart <picture> support - only <img> needs sizes attribute
  • 🔄 Auto-updates on window resize
  • 🎨 Customizable via events and CSS classes
  • 📱 Works with any responsive image setup
  • ✨ Modern ES6 code for current browsers

Quick Start

Recommended: Load the script in <head> or before your images for optimal performance.

<script type="module">
    import 'auto-sizes';
    // That's it! The library auto-initializes and calculates sizes.
</script>

<img
  class="autosizes"
  sizes="auto"
  srcset="image-300.jpg 300w, image-600.jpg 600w, image-900.jpg 900w"
  src="image-300.jpg"
  alt="Responsive image"
/>

Result:

<img
  class="autosizes autosized"
  sizes="450px"
  srcset="..."
  alt="..."
/>

Installation

npm

npm install auto-sizes

CDN

<!-- unpkg (recommended) -->
<script type="module" src="https://unpkg.com/auto-sizes"></script>

<!-- jsDelivr -->
<script type="module" src="https://cdn.jsdelivr.net/npm/auto-sizes"></script>

<!-- Minified version -->
<script src="https://unpkg.com/auto-sizes/autosizes.min.js"></script>

Import Methods

// ES modules (auto-executes)
import 'auto-sizes';

// CommonJS
require('auto-sizes');

// With explicit import for manual control
import autoSizes from 'auto-sizes';
autoSizes.init();
autoSizes.updateAll();

Usage

Basic Image

<img
  class="autosizes"
  sizes="auto"
  srcset="image-300.jpg 300w, image-600.jpg 600w, image-900.jpg 900w"
  src="image-300.jpg"
  alt="Responsive image"
/>

The library will:

  1. Find elements with class="autosizes" and sizes="auto"
  2. Calculate width based on rendered size
  3. Set sizes="450px" (actual calculated value)
  4. Add autosized class for styling hooks

Picture Element

Add autosizes class and sizes="auto" only to the <img> element. The <source> elements don't need the sizes attribute:

<picture>
  <source srcset="desktop-800.jpg 800w, desktop-1200.jpg 1200w" media="(min-width: 768px)" />
  <source srcset="mobile-400.jpg 400w, mobile-600.jpg 600w" />
  <img class="autosizes" sizes="auto" srcset="fallback-600.jpg 600w" src="fallback-600.jpg" alt="..." />
</picture>

How it works: The browser first selects the appropriate <source> based on media queries, then uses the sizes attribute from the <img> element to determine which image from the selected srcset to load.

Styling with autosized Class

/* Fade in after calculation */
img.autosizes:not(.autosized) {
  opacity: 0.3;
}

img.autosized {
  opacity: 1;
  transition: opacity 0.3s;
}

Configuration

Set window.autoSizesConfig before loading the library:

window.autoSizesConfig = {
  minSize: 40,                        // Traverse up DOM if element < 40px
  targetElementClass: 'autosizes',    // Class to identify elements
  processedElementClass: 'autosized', // Class added after processing
  sizesAttr: 'sizes',                 // Attribute to check for "auto"
  init: true,                         // Auto-initialize
  resizeDebounce: 99                  // Resize debounce delay (ms)
};

Attribute Prefix Support

Use prefixed attributes like data-sizes. Both the prefixed and base attributes will be set:

window.autoSizesConfig = {
  sizesAttr: 'data-sizes'
};
<!-- Input -->
<img class="autosizes" data-sizes="auto" srcset="..." />

<!-- Output - both attributes set -->
<img class="autosizes autosized" data-sizes="450px" sizes="450px" srcset="..." />

Useful for:

  • Framework compatibility (Vue, React data attributes)
  • Preserving original attribute for debugging
  • Tools that expect both attributes

Events

beforeSizesUpdate

Fired before sizes is set. Modify width or prevent update:

image.addEventListener('beforeSizesUpdate', (e) => {
  // Round to nearest 100px
  e.detail.width = Math.ceil(e.detail.width / 100) * 100;

  // Or prevent update
  // e.preventDefault();
});

Event detail:

  • width (number) - Calculated width in pixels (modifiable)
  • dataAttr (boolean) - Whether triggered by data attribute

afterSizesUpdate

Fired after sizes is set:

image.addEventListener('afterSizesUpdate', (e) => {
  console.log('Sizes set to:', e.detail.sizes); // "450px"
});

Event detail:

  • width (number) - Final width value
  • sizes (string) - The sizes value that was set

API

// Update all elements
autoSizes.updateAll();

// Update specific element
autoSizes.updateElem(imageElement);

// Initialize manually (if auto-init disabled)
autoSizes.init();

// Access config
autoSizes.cfg.minSize = 50;

Browser Support

Modern browsers with:

  • srcset and sizes attributes
  • classList API
  • requestAnimationFrame

Tested: Chrome/Edge 90+, Firefox 88+, Safari 14+, iOS Safari, Chrome Mobile

Differences from lazysizes

This is a focused extraction of only the sizes calculation feature from lazysizes.

What's Removed ❌

| Removed | Why | |---------|-----| | Lazy loading | Use native loading="lazy" or your own solution | | Intersection Observer | Only needed for lazy loading | | MutationObserver | Reduced overhead; use updateAll() for dynamic content | | Scroll events | Only resize monitored | | IE11 support | Modern browsers only | | Plugin system | Simplified to core functionality |

What's Kept ✅

  • ✅ Auto sizes calculation algorithm
  • ✅ Picture element support
  • ✅ Smart width detection with DOM traversal
  • ✅ RAF batching for performance
  • ✅ Debounced resize handling
  • ✅ Customization events

New Features 🆕

  • sizes="auto" requirement - Explicit opt-in per element
  • Prefix support - data-sizes="auto" sets both attributes
  • Correct <picture> handling - Only <img> gets sizes attribute (per HTML spec)
  • Modern ES6 - Cleaner, more maintainable code
  • Simplified API - updateAll() and updateElem()

Size Comparison

| Metric | lazysizes | auto-sizes | Savings | |--------|-----------|-----------|---------| | Source code | 19.9 KB / 813 lines | 8.0 KB / 328 lines | 60% | | Minified | 7.8 KB | ~2.2 KB | 72% | | Gzipped | ~3.5 KB | ~1.0 KB | 71% |

When to Use Each

Use lazysizes if:

  • Need lazy loading (images, iframes, scripts)
  • Need LQIP or progressive loading
  • Need IE11 support
  • Want extensive plugin ecosystem

Use auto-sizes if:

  • Only need sizes calculation
  • Already have lazy loading solution
  • Use native loading="lazy"
  • Want minimal bundle size
  • Target modern browsers only

Code Example

<!-- lazysizes: uses data-sizes with lazy loading -->
<img class="lazyload" data-sizes="auto" data-srcset="..." data-src="..." />

<!-- auto-sizes: uses sizes="auto" without lazy loading -->
<img class="autosizes" sizes="auto" srcset="..." src="..." />

Both share the same core algorithm, originally developed by Alexander Farkas for lazysizes.

Credits

This library extracts the automatic sizes calculation feature from lazysizes by Alexander Farkas.

If you need full lazy loading features, we highly recommend using lazysizes. It provides:

  • Lazy loading for images, iframes, and scripts
  • LQIP and progressive loading
  • Responsive image polyfills
  • Extensive plugin ecosystem
  • Battle-tested performance optimizations

License

MIT