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

@sliderzz/fleek-infinite-scroll

v1.1.0

Published

A React component that implements infinite scrolling functionality for large lists of data with client-side pagination.

Readme

InfiniteScroll Component

A React component that implements infinite scrolling functionality for large lists of data with client-side pagination.

Features

  • Client-side pagination
  • Customizable item rendering
  • Loading and end-of-list indicators
  • Configurable scroll threshold
  • Customizable styling

Installation

npm install @sliderzz/fleek-infinite-scroll

Usage

// Example usage
import { InfiniteScroll } from '@sliderzz/fleek-infinite-scroll';

interface User {
  id: number;
  name: string;
  email: string;
}

const UserList = () => {
  // Sample data
  const users: User[] = [
    { id: 1, name: 'John Doe', email: '[email protected]' },
    { id: 2, name: 'Jane Smith', email: '[email protected]' },
    // ... more users
  ];

  const renderUser = (user: User, index: number) => {
    return (
      <div className='p-4 bg-white shadow rounded-lg'>
        <h3 className='font-bold'>{user.name}</h3>
        <p className='text-gray-600'>{user.email}</p>
      </div>
    );
  };

  return (
    <div className='container mx-auto p-4'>
      <h1 className='text-2xl font-bold mb-4'>User List</h1>
      <InfiniteScroll
        items={users}
        renderItem={renderUser}
        itemsPerPage={20}
        containerHeight='600px'
        className='bg-gray-100 p-4 rounded-lg'
        loadingComponent={
          <div className='flex justify-center py-4'>
            <span className='loading loading-spinner' />
          </div>
        }
        endMessage={
          <div className='text-center text-gray-500 py-4'>
            That's all the users!
          </div>
        }
        threshold={200}
      />
    </div>
  );
};

Props

| Prop | Type | Default | Description | | ------------------ | --------------------------------------------- | ---------------------------------- | ---------------------------------------------------------- | | items | T[] | Required | Array of items to be displayed | | renderItem | (item: T, index: number) => React.ReactNode | Required | Function to render each item | | itemsPerPage | number | 10 | Number of items to load per page | | className | string | '' | Additional CSS classes for the container | | loadingComponent | React.ReactNode | <div>Loading...</div> | Component to show while loading more items | | endMessage | React.ReactNode | <div>No more items to load</div> | Message to show when all items are loaded | | threshold | number | 100 | Distance from bottom (in pixels) to trigger next page load | | containerHeight | string \| number | '600px' | Height of the scrollable container |

Notes

  • The component handles pagination client-side, meaning all data should be passed in advance
  • Uses a scroll threshold to determine when to load more items
  • Automatically manages the display of loading and end-message components
  • Cleans up event listeners on unmount

Performance Considerations

  • Consider the size of your data array as all items are stored in memory
  • Use appropriate itemsPerPage values to balance smooth scrolling and performance
  • Implement virtualization for extremely large lists (10,000+ items)

Browser Support

Works in all modern browsers that support:

  • IntersectionObserver API
  • CSS Flexbox
  • Modern JavaScript features