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 🙏

© 2025 – Pkg Stats / Ryan Hefner

smart-virtual-scroll

v0.1.4

Published

A high-performance, virtualized React scroll component for rendering large lists efficiently. Supports horizontal and vertical orientation, dynamic item sizing, and smooth scrolling without jitter. Perfect for lists, feeds, carousels, or grids.

Readme

# 🪄 SmartVirtualScroll

A high-performance, virtualized React scroll component for rendering large lists efficiently. Supports horizontal and vertical orientation, dynamic item sizing, and smooth scrolling without jitter. Perfect for lists, feeds, carousels, or grids.


🚀 Features

  • 🌟 Virtualized Rendering – Only renders visible items + buffer for ultra-fast performance.
  • ↔️ Horizontal & Vertical – Controlled via orientation prop.
  • 📏 Dynamic Sizing – Calculates how many items fit in the viewport automatically.
  • 🪄 Smooth Scroll – Maintains scroll position while removing offscreen items.
  • ⚡ Resizable – Adjusts automatically on window resize.
  • 🛠 Fully Customizable – Supports gap, buffer (correction), threshold, and style overrides.

📦 Installation

npm install smart-virtual-scroll

💻 Usage

Basic Example (Vertical List)

import React from "react";
import { SmartVirtualScroll } from "smart-virtual-scroll";
import { Box, Text } from "@chakra-ui/react";

const items = Array.from({ length: 500 }, (_, i) => (
  <Box
    key={i}
    w="100%"
    h="80px"
    bg={i % 2 ? "blue.100" : "blue.200"}
    borderRadius="md"
    display="flex"
    alignItems="center"
    justifyContent="center"
  >
    <Text fontWeight="bold">Item {i + 1}</Text>
  </Box>
));

export const Example = () => (
  <SmartVirtualScroll
    orientation="vertical"
    gap={10}
    correction={3}
    threshold={250}
  >
    {items}
  </SmartVirtualScroll>
);

Horizontal Scroll Example

<SmartVirtualScroll orientation="horizontal" gap={12} correction={2}>
  {items}
</SmartVirtualScroll>

⚙️ Props

| Prop | Type | Default | Description | | | ------------- | --------------------- | ----------- | ------------------------------------------------------------------- | ----------------- | | children | React.ReactNode[] | [] | Array of elements to render. | | | orientation | "horizontal" | "vertical" | "horizontal" | Scroll direction. | | gap | number | 16 | Space between items in pixels. | | | correction | number | 2 | Extra items rendered before/after visible window for smooth scroll. | | | threshold | number | 200 | Distance in px from the end to trigger pre-load. | | | style | React.CSSProperties | {} | Optional style overrides for the container. | |

🛠 How it Works

  • Measures child element size and container size.
  • Calculates how many items fit in the viewport + correction buffer.
  • Only renders visible items and uses spacers to maintain scrollbar.
  • Adjusts automatically on window resize or orientation change.

🎨 Styling

You can pass style prop to customize the scroll container:

<SmartVirtualScroll
  orientation="vertical"
  style={{ border: "1px solid #ddd", borderRadius: 8 }}
>
  {items}
</SmartVirtualScroll>

⚡ Tips

  • Best for large lists (>500 items).
  • Works well with Chakra UI, Tailwind, or plain CSS.
  • Use correction buffer for smoother scrolling when rendering many items.

Open in CodeSandbox GitHub