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/svelte

v0.10.0

Published

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

Readme

@snapgridjs/svelte

A react-grid-layout v2 alternative, built on dnd-kit — for Svelte 5.

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

npm License: MIT

Documentation · Getting Started · Examples · API

The Svelte binding of snapgrid. Same framework-free core + dnd-kit engine as @snapgridjs/react and @snapgridjs/vue — a grid behaves identically whichever framework renders it.

Why snapgrid

  • Controlled & predictable — you own the layout array; every change comes back through onLayoutChange. No hidden state.
  • Headless-first — compose createGridContainer + factories under a dnd-kit DragDropProvider for full control of your markup — or drop in the turnkey <GridLayout> when you don't need that. Ships no CSS.
  • Svelte 5 native — runes + attachments ({@attach}); tiles declare a group, like a dnd-kit sortable. Fine-grained reactivity, nothing to memoize.
  • 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 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 createSortable list or board (cards in, tiles out, both reorder) under one provider, via snapMove.
  • Responsive — per-breakpoint layouts with <ResponsiveGridLayout>.
  • SSR-safe (SvelteKit) and TypeScript-first (types included).

Install

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

Requires Svelte 5 (svelte@^5.29, a peer dependency). @snapgridjs/extras (masonry/gravity/shelf packers) is optional.

Quick start

snapgrid is headless-first: you compose factories with a dnd-kit DragDropProvider and render your own markup. Because a tile's createGridItem must run inside the provider, the grid host lives in a child component.

<!-- Board.svelte -->
<script lang="ts">
  import { DragDropProvider, createContainerWidth } from "@snapgridjs/svelte";
  import Surface from "./Surface.svelte";

  let layout = $state([
    { 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 },
  ]);
  const width = createContainerWidth();
</script>

<!-- DragDropProvider is the outermost element; Surface runs createGridContainer
     inside it, so it resolves the provider's dnd-kit manager. -->
<div {@attach width.attach}>
  <DragDropProvider>
    <Surface {layout} width={width.width} onLayoutChange={(next) => (layout = next)} />
  </DragDropProvider>
</div>
<!-- Surface.svelte — the grid host; returns the grid's `group`. -->
<script lang="ts">
  import { createGridContainer } from "@snapgridjs/svelte";
  import Tile from "./Tile.svelte";

  let { layout, width, onLayoutChange } = $props();
  const container = createGridContainer(() => ({ layout, width, onLayoutChange }));
</script>

<div {@attach container.attach} style={container.style}>
  {#each layout as it (it.i)}
    <Tile id={it.i} group={container.group} />
  {/each}
</div>
<!-- Tile.svelte — each tile resolves its grid by `group`, like a dnd-kit sortable. -->
<script lang="ts">
  import { createGridItem } from "@snapgridjs/svelte";

  let { id, group } = $props();
  const tile = createGridItem({ id, group });
</script>

<div {@attach tile.attach} style={tile.style} class="tile">{id}</div>

Prefer a ready-made component? The turnkey <GridLayout> wraps these same factories (and supplies the provider) — pass an item snippet and you're done:

<GridLayout {layout} {width} onLayoutChange={(next) => (layout = next)}>
  {#snippet item(it)}
    <div class="tile">{it.i}</div>
  {/snippet}
</GridLayout>

→ Full walkthrough in Getting Started.

License

MIT © Edmond Leung