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-showcase-sliders

v1.0.6

Published

A modern React slider with thumbnails, autoplay, and Tailwind v4 animations

Readme

React Showcase Sliders

A modern, customizable React slider with thumbnails, autoplay, and smooth animations. Built with performance and simplicity in mind.


Features

  • Autoplay support (with delay control)
  • Thumbnail navigation (click to slide)
  • Fully responsive (desktop / tablet / mobile)
  • Built-in animations (fade, zoom, text reveal)
  • Lightweight & fast
  • No external animation libraries required
  • Easy to customize

Installation

npm install react-showcase-sliders

Usage

import { Slider } from "react-showcase-sliders";

const slides = [
  {
    id: 1,
    image: "/tour-1.jpg",
    title: "COX'S BAZAR",
    description: "World’s longest sea beach with stunning views.",
  },
  {
    id: 2,
    image: "/tour-2.jpg",
    title: "SAINT MARTIN",
    description: "Beautiful coral island with crystal clear water.",
  },
];

export default function App() {
  return (
    <Slider
      slides={slides}
      autoPlay
      delay={3000}
      animation="fade"
      visibleCount={{ desktop: 3, tablet: 2 }}
    />
  );
}

Slide Data Structure

Each slide object must follow this format:

type SlideType = {
  id: number;
  image: string;
  title: string;
  description: string;
};

Props

| Prop | Type | Default | Description | | -------------- | ----------------------------------------------------- | ------------ | -------------------------------------------- | | slides | SlideType[] | required | Array of slide objects | | autoPlay | boolean | false | Enable/disable autoplay | | delay | number | 3000 | Autoplay delay (ms) | | animation | "fade" \| "zoom" \| "none" | "none" | Slide transition animation | | visibleCount | { desktop: number; tablet: number; mobile: number } | {3,2,1} | Number of thumbnails visible per screen size |


Responsive Control

You can control how many thumbnails are visible on different devices:

<Slider
  slides={slides}
  visibleCount={{
    desktop: 4,
    tablet: 2,
  }}
/>

Controls

  • Click thumbnails to navigate
  • Use left/right arrows
  • Hover to pause autoplay
  • Smooth animated transitions

Notes

  • No external dependencies like framer-motion
  • Works with React (JS & TS)

Author

Raju Molla


License

MIT License


Support

If you like this project, consider giving it a ⭐ on GitHub! Github