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

react-virtuoso

v4.18.1

Published

A virtual scroll React component for efficiently rendering large scrollable lists, grids, tables, and feeds

Readme

React Virtuoso

npm version npm downloads license TypeScript

React components for efficiently rendering large lists, grids, and tables with virtualization.

| Component | Purpose | | ----------------- | -------------------------------------------- | | Virtuoso | Flat lists | | GroupedVirtuoso | Groups of items with sticky group headers | | VirtuosoGrid | Same-sized items in a responsive grid layout | | TableVirtuoso | Tables with virtualized rows |

Features

  • Variable item sizes - handles items with different heights automatically, no manual measurement needed
  • Dynamic size changes - observes item size changes via ResizeObserver and readjusts automatically
  • Responsive container sizing - adapts to parent/viewport size changes, safe for flexbox layouts
  • Bi-directional endless scrolling - supports startReached and endReached callbacks for loading data on demand
  • Press to load more - append or prepend items while retaining scroll position
  • Initial scroll position - start from any location, skipping initial rendering of earlier items
  • Customizable markup - custom Header, Footer, Scroller, and item wrapper components
  • UI library integration - works with shadcn/ui, MUI, Mantine, and other component libraries
  • Drag-and-drop support - integrates with drag-and-drop libraries through custom components

Installation

npm install react-virtuoso

Quick Start

Virtuoso

Add the Virtuoso Component to your React project. The bare minimum it needs is a height for its container (either explicitly set, or adjusted through a parent flexbox), the number of items to display, and a callback to render the item content.

import { Virtuoso } from 'react-virtuoso'

export default function App() {
  return <Virtuoso style={{ height: '100%' }} totalCount={200} itemContent={(index) => <div>Item {index}</div>} />
}

GroupedVirtuoso

The GroupedVirtuoso component is similar to the "flat" Virtuoso, with the following differences:

  • Instead of totalCount, the Component accepts groupedCounts: number[], which specifies the amount of items in each group. For example, passing [20, 30] will render two groups with 20 and 30 items each;
  • In addition the item render prop, the Component requires an additional group render prop, which renders the group header. The group callback receives the zero-based group index as a parameter;
  • The itemContent render prop gets called with an additional second parameter, groupIndex: number.
import { GroupedVirtuoso } from 'react-virtuoso'

const groupCounts = []

for (let index = 0; index < 1000; index++) {
  groupCounts.push(10)
}

export default function App() {
  return (
    <GroupedVirtuoso
      style={{ height: '100%' }}
      groupCounts={groupCounts}
      groupContent={(index) => {
        return (
          // add background to the element to avoid seeing the items below it
          <div>
            Group {index * 10} &ndash; {index * 10 + 10}
          </div>
        )
      }}
      itemContent={(index, groupIndex) => {
        return (
          <div>
            Item {groupIndex}.{index}
          </div>
        )
      }}
    />
  )
}

Check the grouped numbers, grouped by first letter and groups with load on demand examples.

TableVirtuoso

The TableVirtuoso component works like the Virtuoso one, but with HTML tables. It supports window scrolling, sticky headers, and fixed columns.

import { TableVirtuoso } from 'react-virtuoso'

export default function App() {
  return (
    <TableVirtuoso
      style={{ height: '100%' }}
      data={Array.from({ length: 100 }, (_, index) => ({
        name: `User ${index}`,
        description: `${index} description`,
      }))}
      itemContent={(index, user) => (
        <>
          <td style={{ width: 150 }}>{user.name}</td>
          <td>{user.description}</td>
        </>
      )}
    />
  )
}

VirtuosoGrid

The VirtuosoGrid component displays same sized items in multiple columns. The layout and item sizing is controlled CSS class properties or styled containers, which allows you to use media queries, min-width, percentage, etc.

import { VirtuosoGrid, VirtuosoGridProps } from 'react-virtuoso'
import { forwardRef } from 'react'

// Ensure that the component definitions are not declared inline in the component function,
// Otherwise the grid will remount with each render due to new component instances.
const gridComponents: VirtuosoGridProps<undefined, undefined>['components'] = {
  List: forwardRef(({ style, children, ...props }, ref) => (
    <div
      ref={ref}
      {...props}
      style={{
        display: 'flex',
        flexWrap: 'wrap',
        ...style,
      }}
    >
      {children}
    </div>
  )),
  Item: ({ children, ...props }) => (
    <div
      {...props}
      style={{
        padding: '0.5rem',
        width: '33%',
        display: 'flex',
        flex: 'none',
        alignContent: 'stretch',
        boxSizing: 'border-box',
      }}
    >
      {children}
    </div>
  ),
}

const ItemWrapper = ({ children, ...props }) => (
  <div
    {...props}
    style={{
      display: 'flex',
      flex: 1,
      textAlign: 'center',
      padding: '1rem 1rem',
      border: '1px solid gray',
      whiteSpace: 'nowrap',
    }}
  >
    {children}
  </div>
)

export default function App() {
  return (
    <>
      <VirtuosoGrid
        style={{ height: '100%' }}
        totalCount={1000}
        components={gridComponents}
        itemContent={(index) => <ItemWrapper>Item {index}</ItemWrapper>}
      />
      <style>{`html, body, #root { margin: 0; padding: 0 }`}</style>
    </>
  )
}

Performance

Several factors affect the component's performance. The first and most important one is the size of the visible area. Redrawing more items takes more time and reduces the frame rate. To see if this affects you, reduce the component width or height; Set the style property to something like {{width: '200px'}}.

Next, if the items are complex or slow to render, use React.memo for the itemContent contents.

// Item contents are cached properly with React.memo
const InnerItem = React.memo(({ index }) => {
  React.useEffect(() => {
    console.log('inner mounting', index)
    return () => {
      console.log('inner unmounting', index)
    }
  }, [index])
  return <div style={{ height: 30 }}>Item {index}</div>
})

// The callback is executed often - don't inline complex components in here.
const itemContent = (index) => {
  console.log('providing content', index)
  return <InnerItem index={index} />
}

const App = () => {
  return <Virtuoso totalCount={100} itemContent={itemContent} style={{ height: '100%' }} />
}

ReactDOM.render(<App />, document.getElementById('root'))

You can experiment with the increaseViewportBy property that specifies how much more to render in addition to the viewport's visible height. For example, if the component is 100px tall, setting the increaseViewportBy to 150 will cause the list to render at least 250px of content.

Loading images and displaying complex components while scrolling can cause jank. To fix that, you can hook to the isScrolling callback and replace the problematic content in the item with a simplified one. Check the scroll handling example for a possible implementation.

Caveats

Setting CSS margins to the content or the item elements is the Kryptonite of Virtuoso's content measuring mechanism - the contentRect measurement does not include them.

If this affects you, the total scroll height will be miscalculated, and the user won't be able to scroll all the way down to the list.

To avoid that, if you are putting paragraphs and headings inside the item, make sure that the top/bottom elements' margins do not protrude outside of the item container.

<Virtuoso
  totalCount={100}
  item={(index) => (
    <div>
      <p style={{ margin: 0 }}>Item {index}</p>
    </div>
  )}
/>

A few more common problems are present in the troubleshooting section.

Links