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

use-sticky-columns

v1.0.10

Published

A lightweight React hook to make table columns sticky on both left and right sides.

Readme

use-sticky-columns

npm version license bundle size types

A lightweight React hook to make HTML table columns sticky on both left and right sides. Great for data tables and dashboards.

🎬 Live Demo

✨ Features

  • Sticky left and/or right columns
  • Automatically handles offsets
  • Customizable shadow, z-index, and more
  • Compatible with any third party UI Library

📦 Installation

npm install use-sticky-columns

🚀 Usage

Pass tableRef directly to the table element

const tableRef = useRef<HTMLTableElement>(null);
useStickyColumns(tableRef, { numLeftSticky: 2, numRightSticky: 1 });

Full example

.striped-table {
  tr:nth-child(odd) td {
    background-color: white;
  }
  tr:nth-child(even) td {
    background-color: #fafbfc;
  }
}
import ExampleTable from "@/components/examples/ExampleTable";
import { useRef, useState } from "react";
import useStickyColumns from "use-sticky-columns";

const Page = () => {
  const tableRef = useRef<HTMLTableElement | null>(null);

  const [numLeftSticky, setNumLeftSticky] = useState(2);
  const [numRightSticky, setNumRightSticky] = useState(3);

  useStickyColumns(tableRef, {
    numLeftSticky,
    numRightSticky,
    stickyZIndex: 10, # default
    leftShadow: "inset -2px 0 0 0 rgba(0, 0, 0, 0.1)", # default
    rightShadow: "inset 2px 0 0 0 rgba(0, 0, 0, 0.1)",
    deps: [], # any dependencies to reload the table
  });

  return (
    <div className="m-4 md:m-20 space-y-4">
      {/* Controls */}
      <div className="flex flex-col sm:flex-row items-start sm:items-center gap-4">
        <label className="flex items-center gap-2 text-sm">
          Left Sticky Columns:
          <input
            type="number"
            value={numLeftSticky}
            onChange={(e) => setNumLeftSticky(Number(e.target.value))}
            min={1}
            className="rounded border px-2 py-1 w-20"
          />
        </label>

        <label className="flex items-center gap-2 text-sm">
          Right Sticky Columns:
          <input
            type="number"
            value={numRightSticky}
            onChange={(e) => setNumRightSticky(Number(e.target.value))}
            min={1}
            className="rounded border px-2 py-1 w-20"
          />
        </label>
      </div>

      {/* Table Container */}
      <div className="max-h-[600px] overflow-hidden rounded-xl border">
        <div className="flex overflow-auto next-ui-table-thead striped-table max-h-[600px]">
          <div className="w-0 grow">
            <ExampleTable tableRef={tableRef} />
          </div>
        </div>
      </div>
    </div>
  );
};

export default Page;