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

scroll-carousel-react

v1.0.0

Published

Scroll carousel, a unique content slider that specially works on window scroll.

Readme

Scroll Carousel React

This is the react version of Scroll Carosel plugin, which is written in vanilla JavaScript.

NPM | Documentation | Demos

Note: This carousel only operates in browser.

Install

npm
npm install scroll-carousel-react

Usages

With React JS
import React from 'react';
import ScrollCarousel from 'scroll-carousel-react';


const MyComponent = () => {
  return (
    <>
      <h1>This is my component page</h1>
      <p>Now i am showing my creation scroll carousel</p>
      <ScrollCarousel
        autoplay
        autoplaySpeed={8}
        speed={7}
        onReady={() => console.log('I am ready')}
      >
        {[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11].map((item) => (
          <div key={item} className='bg-blue-300/20 border-2 border-blue-300/70 rounded h-36 w-48'>
            {item}
          </div>
        ))}
      </ScrollCarousel>
    </>
  );
};

export default MyComponent;
With Next JS
  1. Make a component with any name ScrollCarouselComponent with the following code. This is a wrapper component.

components/ScrollCarouselComponent.js

// 'use client'; // For Next JS 13 app router


import React from 'react';
import ScrollCarousel from 'scroll-carousel-react';


const ScrollCarouselComponent = () => {
  return (
    <ScrollCarousel
      autoplay
      autoplaySpeed={8}
      speed={7}
      onReady={() => console.log('I am ready')}
    >
      {[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11].map((item) => (
        <div key={item} className='bg-blue-300/20 border-2 border-blue-300/70 rounded h-36 w-48'>
          {item}
        </div>
      ))}
    </ScrollCarousel>
  );
};

export default ScrollCarouselComponent;
  1. Import this component where you need it. But it should be dynamic import. This is because the next js tries to run the plugin in its server side. But as it is only available for client side. That's why it does not find window or document
// 'use client'; // For Next JS 13 app router

import React from 'react';

import dynamic from 'next/dynamic';

const ScrollCarousel = dynamic(() => import('@/components/ScrollCarouselComponent'), { ssr: false });

const MyComponent = () => {
  return (
    <div className='flex min-h-screen flex-col items-center justify-between p-24'>
      <div className='text-center'>
        <h2 className='text-4xl font-bold'>This is our about page</h2>
      </div>

      <ScrollCarousel />
    </div>
  );
};

export default MyComponent;

Props

  • All props are optional

| Option | Type | Default | Description | | ------------- | ------------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------- | | speed | number | 7 | The value given is how fast you want to move on the scroll. It needs to be greater than 0. | | smartSpeed | boolean | false | To calculate the speed of how fast or slow you are scrolling a website. | | margin | number | 10 | To make gap between two slide | | slideSelector | string | null | Select the slides with a class name you want to select for the carousel. Other elements will behave as simple. | | autoplay | boolean | false | The option will allow the slides move automatically and still you will have the ability to handle sliding speed on scroll. | | autoplaySpeed | number | 5 | Control autoplay speed. It needs to be greater than 0 | | direction | string | 'rtl' | Control direction left to right or right to left. Two possible option - ltr or rtl | | onReady | () => void | | When the carousel is ready to perform its action, that time this event will be fired. | | onMove | (progress: number) => void | | When the carousel is on move (i,e at the time of scrolling, when autoplay enabled), the event will be fired continuously. | | onDestroy | () => void | | At the time of destroy function, this event will be fired. | | className | string | | For using with extra class | | elementType | string | div | Tag, that will be used to create the carousel. | | scRef | (ref: ScrollCarousel) => void | | This will give you an instance of scroll carousel. You can use it for method call. |

For better documentaion, please have a look on the website of Scroll Carousel

License

The code and the documentation are released under the MIT License.