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

@snapgridjs/react

v0.7.0

Published

React grid-layout components built on dnd-kit — a react-grid-layout v2 alternative.

Readme

@snapgridjs/react

A react-grid-layout v2 alternative, built on dnd-kit.

Draggable, resizable, responsive grid layouts for React — with pluggable packing and dragging tiles between grids.

npm License: MIT

Documentation · Getting Started · Examples · API

Why snapgrid

  • Controlled & predictable — you own the layout array; every change comes back through onLayoutChange. No hidden state.
  • Headless-first — compose useGridContainer + hooks under a dnd-kit DragDropProvider for full control of your markup — or drop in the turnkey <GridLayout> (react-grid-layout-style) when you don't need that. Ships no CSS.
  • Pluggable packingvertical / horizontal / none, plus masonry / gravity / shelf from @snapgridjs/extras, or your own Compactor.
  • Cross-grid dragging — wrap grids in a <SnapGridGroup> and drag tiles between them.
  • Nested grids — drop a grid inside a tile of another grid and drag tiles between levels; isolate a sub-grid with its own provider when you want it contained.
  • dnd-kit interop — drag between a grid and a dnd-kit useSortable list or board (cards in, tiles out, both reorder) under one provider, via snapMove.
  • Responsive — per-breakpoint layouts with <ResponsiveGridLayout>.
  • Keyboard accessible — Enter/Space to pick up, arrow keys to move, Esc to cancel.
  • SSR-safe and TypeScript-first (types included).

Install

pnpm add @snapgridjs/react @dnd-kit/react @dnd-kit/dom

@snapgridjs/extras (masonry/gravity/shelf packers) is optional.

Quick start

snapgrid is headless-first: you compose hooks with a dnd-kit DragDropProvider and render your own markup.

import { DragDropProvider } from "@dnd-kit/react";
import { type Layout, useContainerWidth, useGridContainer, useGridItem } from "@snapgridjs/react";
import { useState } from "react";

export function Board() {
  const { width, containerRef } = useContainerWidth();
  const [layout, setLayout] = useState<Layout>([
    { i: "a", x: 0, y: 0, w: 4, h: 2 },
    { i: "b", x: 4, y: 0, w: 4, h: 2 },
    { i: "c", x: 8, y: 0, w: 4, h: 2 },
  ]);

  // You supply the dnd-kit provider; useGridContainer runs inside it (in Surface).
  return (
    <div ref={containerRef}>
      <DragDropProvider>
        <Surface layout={layout} width={width} onLayoutChange={setLayout} />
      </DragDropProvider>
    </div>
  );
}

function Surface({
  layout,
  width,
  onLayoutChange,
}: { layout: Layout; width: number; onLayoutChange: (next: Layout) => void }) {
  const { containerProps, group } = useGridContainer({ layout, width, onLayoutChange });
  return (
    <div {...containerProps}>
      {layout.map((it) => (
        <Tile key={it.i} id={it.i} group={group} />
      ))}
    </div>
  );
}

function Tile({ id, group }: { id: string; group: string }) {
  const { ref, style } = useGridItem({ id, group });
  return (
    <div ref={ref} style={style} className="tile">
      {id}
    </div>
  );
}

Prefer a ready-made component? The turnkey <GridLayout> wraps these same hooks (and supplies the provider) in a react-grid-layout-style API:

<GridLayout layout={layout} width={width} onLayoutChange={setLayout}>
  {layout.map((item) => (
    <div key={item.i} className="tile">
      {item.i}
    </div>
  ))}
</GridLayout>

→ Full walkthrough in Getting Started.

License

MIT © Edmond Leung