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

rc-infinite-carousel

v1.1.2

Published

A lightweight and customizable infinite carousel component for React. Perfect for displaying images, logos, testimonials, or any other content with smooth transitions and flexible configuration options.

Readme

rc-infinite-carousel

A lightweight and customizable infinite carousel component for React. Perfect for displaying images, logos, testimonials, or any other content with smooth transitions and flexible configuration options.

Installation

npm install rc-infinite-carousel

Features

  • Infinite scrolling carousel.
  • Customizable slide rendering via the renderItem function.
  • Supports smooth animations with customizable durations.
  • direction prop to control scrolling direction (LEFT or RIGHT).
  • showMask prop to toggle mask-image filter for enhanced visual appeal.
  • pauseOnHover prop to pause the animation when the user hovers over the carousel.
  • onSlideClick callback for handling slide click events.
  • Accessibility support with ariaLabel and role props.
  • Automatically calculates visible slides based on the container size.

Usage

import Carousel from "rc-infinite-carousel";
import "rc-infinite-carousel/dist/index.css";

const data = [
  { id: 1, content: "Slide 1" },
  { id: 2, content: "Slide 2" },
  { id: 3, content: "Slide 3" },
  { id: 4, content: "Slide 4" },
  { id: 5, content: "Slide 5" },
  { id: 6, content: "Slide 6" },
  { id: 7, content: "Slide 7" },
  { id: 8, content: "Slide 8" },
  // Add more slides as needed
];

const renderItem = ({ item }) => (
  <div
    style={{
      width: 250,
      height: 250,
      background: "#AFF253",
      fontSize: 40,
      padding: 8,
    }}
  >
    {item.content}
  </div>
);

const App = () => (
  <Carousel
    data={data}
    renderItem={renderItem}
    animationDuration={10}
    direction="LEFT"
    showMask={true}
    pauseOnHover={true}
  />
);

export default App;

Props

| Prop | Description | Type | Default | | ------------------- | --------------------------------------------------- | -------- | -------- | | data | Array of items to display. | Array | required | | renderItem | Function to render each slide. | Function | required | | animationDuration | Duration of the scrolling animation in seconds. | Number | 10 | | direction | Direction of the carousel ("LEFT" or "RIGHT"). | String | "LEFT" | | showMask | Boolean to enable or disable the mask-image filter. | Boolean | false | | pauseOnHover | Boolean to pause the animation when hovering. | Boolean | false | | onSlideClick | Function triggered when a slide is clicked. | Function | optional | | ariaLabel | Accessibility label for the carousel. | String | optional | | role | Accessibility role for the carousel. | String | optional |

Development

To contribute to the library, follow these steps:

  1. Clone the repository.
  2. Install dependencies: npm install
  3. Build the project: npm run build

License

This project is licensed under the Apache-2.0 License.

Links