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

@get-set/gs-sortable

v0.0.37

Published

Get-Set Sortable

Readme

Get-Set Sortable

A drag-and-drop sortable grid plugin with column, row and grid layout support.
One codebase — builds both a vanilla JS bundle and a React component.
CSS is injected automatically — no stylesheet import needed.


Build

npm install
npm run build

| Command | Output | Use for | |----------------------|----------------------------------|------------------| | npm run build | both outputs below | everything | | npm run build:js | dist-js/bundle.js | vanilla JS / CDN | | npm run build:react| dist/components/GSSortable.js | React / npm |


Vanilla JS

<script src="dist-js/bundle.js"></script>

<div class="list">
  <div>Item 1</div>
  <div>Item 2</div>
  <div>Item 3</div>
</div>

<script>
  new GSSortable(document.querySelector('.list'), {
    type: 'column',
    gap: '10px',
    afterSort: (items) => console.log('sorted', items),
  });
</script>

jQuery and HTMLElement.prototype shortcuts are also available:

$('.list').GSSortable({ type: 'grid', count: 3 });
document.querySelector('.list').GSSortable({ type: 'row' });

React

CSS is injected automatically when the component mounts.

import GSSortable from '@get-set/gs-sortable';

<GSSortable type="column" gap="10px" afterSort={(items) => console.log(items)}>
  <div>Item 1</div>
  <div>Item 2</div>
  <div>Item 3</div>
</GSSortable>

Cross-container drag (acceptFrom)

<GSSortable reference="list-a" type="column">
  <div>A1</div>
  <div>A2</div>
</GSSortable>

<GSSortable reference="list-b" type="column" acceptFrom={['list-a']}>
  <div>B1</div>
  <div>B2</div>
</GSSortable>

Parameters

| Param | Type | Default | Description | |-----------------|-------------------------------------|-------------|--------------------------------------------------------------| | reference | string | auto | Unique key. Auto-generated if omitted. | | type | 'column' \| 'row' \| 'grid' | 'column' | Layout direction. | | count | number | 3 | Columns (grid mode only). | | gap | string | '' | CSS gap, e.g. '10px' or '10px 20px'. | | handler | string | '' | CSS selector for drag handle inside each item. | | width | string | 'auto' | Item width override. | | takeClone | boolean | false | Drag a clone; original stays in place. | | allowOutOfBox | boolean | true | Allow dragging beyond container bounds. | | acceptFrom | string[] | [] | Reference keys of other instances that may drop items here. | | gsx | object | — | Inline CSS-in-JS styles (React only). | | responsive | ResponsiveOption[] | [] | Breakpoint overrides (sorted automatically). | | beforeInit | () => void | — | Callback before each layout calculation. | | afterSort | (items: NodeListOf<Element>) => void | () => {} | Callback after a sort completes. |