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

@revivejs/resize-observer

v4.0.5

Published

Polyfills the ResizeObserver API and supports box size options from the latest spec

Readme

@revivejs/resize-observer

A maintained ResizeObserver 4.0.x ponyfill for browser applications, with support for content-box, border-box, and device-pixel-content-box observations, TypeScript declarations, ESM and UMD bundles, and versioned docs for every published ReviveJS release.

npm version npm downloads npm monthly license JavaScript ES2018+ TypeScript typings GitHub stars

Documentation & Live Demos | npm | Issues | Repository

Latest version: 4.0.5


Credits: Original project by Juggle.
Maintained and republished by Alexandroit under the ReviveJS scope.


Why this library?

@revivejs/resize-observer keeps the proven ResizeObserver ponyfill API available under active package ownership for teams that still need a browser-safe observer implementation with box-size support. The package stays intentionally close to the maintained 4.0.x line while cleaning up metadata, documentation, and GitHub Pages delivery.

Features

| Feature | Supported | | :--- | :---: | | Maintained ResizeObserver 4.0.x ponyfill line | ✅ | | content-box, border-box, and device-pixel-content-box | ✅ | | Classic contentRect plus box-size arrays | ✅ | | HTML, inline, and SVG targets | ✅ | | Transition, animation, and lifecycle observation demos | ✅ | | ESM and UMD bundles | ✅ | | TypeScript declaration files | ✅ | | Versioned docs per published package release | ✅ |

Table of Contents

  1. Published Version Compatibility
  2. Installation
  3. Setup
  4. Basic Usage
  5. Core APIs
  6. Box Options and Output
  7. Browser Assets
  8. Run Locally
  9. Publishing
  10. License

Published Version Compatibility

| Package version | Maintained line | Runtime target | TypeScript declarations | Demo link | | :---: | :---: | :--- | :--- | :--- | | 4.0.5 | ResizeObserver 4.0.x | Modern browsers with ES2018 demo bundle | lib/exports/resize-observer.d.ts | ResizeObserver 4.0.5 docs | | 4.0.4 | ResizeObserver 4.0.x | Modern browsers with ES2018 demo bundle | lib/exports/resize-observer.d.ts | ResizeObserver 4.0.4 docs | | 4.0.3 | ResizeObserver 4.0.x | Modern browsers with ES2018 demo bundle | lib/exports/resize-observer.d.ts | ResizeObserver 4.0.3 docs | | 4.0.2 | ResizeObserver 4.0.x | Modern browsers with ES2018 demo bundle | lib/exports/resize-observer.d.ts | ResizeObserver 4.0.2 docs | | 4.0.1 | ResizeObserver 4.0.x | Modern browsers with ES2018 demo bundle | lib/exports/resize-observer.d.ts | ResizeObserver 4.0.1 docs | | 4.0.0 | ResizeObserver 4.0.x | Modern browsers with ES2018 demo bundle | lib/exports/resize-observer.d.ts | ResizeObserver 4.0.0 docs |

Earlier 3.x releases were published from the original upstream package line at @juggle/resize-observer.


Installation

npm install @revivejs/resize-observer

Setup

import { ResizeObserver } from '@revivejs/resize-observer';

const observer = new ResizeObserver((entries) => {
  for (const entry of entries) {
    console.log(entry.contentRect.width, entry.contentRect.height);
  }
});

Basic Usage

import { ResizeObserver } from '@revivejs/resize-observer';

const target = document.querySelector('[data-resize-target]');

const observer = new ResizeObserver((entries) => {
  for (const entry of entries) {
    const contentSize = entry.contentBoxSize[0];
    console.log({
      width: entry.contentRect.width,
      height: entry.contentRect.height,
      inlineSize: contentSize?.inlineSize,
      blockSize: contentSize?.blockSize
    });
  }
});

observer.observe(target, { box: 'content-box' });

Core APIs

| API | Description | | :--- | :--- | | new ResizeObserver(callback) | Creates an observer that receives ResizeObserverEntry[] and the active observer instance. | | observe(target, options?) | Starts observing an Element with an optional box selection. | | unobserve(target) | Stops observing one target while leaving the observer active for others. | | disconnect() | Stops every active observation on the observer. |


Box Options and Output

| Option / Field | Description | | :--- | :--- | | box: 'content-box' | Measures the content box and maps naturally to text and padding-free layouts. | | box: 'border-box' | Includes padding and borders for container-style sizing workflows. | | box: 'device-pixel-content-box' | Exposes device-pixel measurements when the runtime supports them. | | contentRect | Legacy rectangle snapshot used widely in existing production code. | | contentBoxSize | Logical inline/block sizes for the content box. | | borderBoxSize | Logical inline/block sizes for the border box. | | devicePixelContentBoxSize | Logical inline/block sizes expressed in device pixels. |


Browser Assets

The published package keeps the maintained distribution layout:

| File | Description | | :--- | :--- | | lib/exports/resize-observer.js | ESM bundle | | lib/exports/resize-observer.umd.js | UMD/browser-compatible bundle | | lib/exports/resize-observer.d.ts | TypeScript declarations |


Run Locally

npm install
npm test
npm run build
npm run build:docs:all
npm start

Publishing

npm run build
npm run pack:check
npm publish --access public

License

Apache-2.0. See LICENSE.


Credits

  • Original project: Juggle
  • Upstream repository: https://github.com/juggle/resize-observer
  • Maintained by: Alexandroit