Repository: clauderic/dnd-kit
Stars: 16993
README.md
<p align="center">
<a href="https://dndkit.com">
<img alt="@dnd-kit – the modern toolkit for building drag & drop interfaces" src=".github/assets/dnd-kit-hero-banner.svg">
</a>
</p>
<p align="center">
A modern, lightweight, performant, accessible and extensible drag and drop toolkit for the web
</p>
Features
- Framework agnostic core: The architecture is built in layers — a framework-agnostic core (@dnd-kit/abstract), a DOM implementation (@dnd-kit/dom), and thin adapters for your framework of choice.
- Supports a wide range of use cases: lists, grids, multiple containers, nested contexts, variable sized items, virtualized lists, 2D games, and more.
- Built-in support for multiple input methods: Pointer, mouse, touch and keyboard sensors.
- Fully customizable & extensible: Customize every detail — animations, transitions, behaviours, styles. Build your own sensors, collision detection algorithms, customize key bindings and more.
- Accessibility: Keyboard support, sensible default ARIA attributes, customizable screen reader instructions and live regions built-in.
- Performance: Built with performance in mind to support silky smooth animations.
- Sortable: Need to build a sortable interface? Check out @dnd-kit/dom/sortable, a thin layer built on top of the core.
<h2 align="left">Getting started</h2>
<p>
Choose your preferred framework to get started:
</p>
<br>
<table width="100%" cellpadding="32">
<tr>
<td width="50%" valign="top">
<br>
<img src="https://cdn.simpleicons.org/javascript/F7DF1E" height="22" alt="JavaScript" />
<br>
<strong><a href="https://dndkit.com/quickstart">Vanilla</a></strong>
Build drag and drop interfaces using plain JavaScript
<br>
</td>
<td width="50%" valign="top">
<br>
<img src="https://cdn.simpleicons.org/react/61DAFB" height="22" alt="React" />
<br>
<strong><a href="https://dndkit.com/react/quickstart">React</a></strong>
Build drag and drop interfaces using React components and hooks
<br><br>
</td>
</tr>
<tr>
<td width="50%" valign="top">
<br>
<img src="https://cdn.simpleicons.org/vue.js/4FC08D" height="22" alt="Vue" />
<br>
<strong><a href="https://dndkit.com/vue/quickstart">Vue</a></strong>
Build drag and drop interfaces using Vue composables and components
<br><br>
</td>
<td width="50%" valign="top">
<br>
<img src="https://cdn.simpleicons.org/svelte/FF3E00" height="22" alt="Svelte" />
<br>
<strong><a href="https://dndkit.com/svelte/quickstart">Svelte</a></strong>
Build drag and drop interfaces using Svelte primitives and components
<br><br>
</td>
</tr>
<tr>
<td width="50%" valign="top">
<br>
<img src="https://cdn.simpleicons.org/solid/2C4F7C" height="22" alt="SolidJS" />
<br>
<strong><a href="https://dndkit.com/solid/quickstart">Solid</a></strong>
Build drag and drop interfaces using SolidJS hooks and components
<br><br>
</td>
<td width="50%" valign="top">
</td>
</tr>
</table>
Documentation
Visit dndkit.com for full documentation, API reference, guides, and interactive examples.
Packages
| Package | Version | Description |
| ------------------------------------------ | ------------------------------------------------------------------------------------------------ | ---------------------------- |
| @dnd-kit/abstract |  | Abstract core |
| @dnd-kit/collision |  | Collision detection |
| @dnd-kit/dom |  | Framework-agnostic DOM layer |
| @dnd-kit/geometry |  | Geometry utilities |
| @dnd-kit/helpers |  | Helper functions |
| @dnd-kit/react |  | React adapter |
| @dnd-kit/solid |  | SolidJS adapter |
| @dnd-kit/state |  | Reactive state management |
| @dnd-kit/svelte |  | Svelte adapter |
| @dnd-kit/vue |  | Vue adapter |
Contributing
This is a monorepo managed with Turborepo and bun.
Install dependencies
bun installBuild all packages
bun run buildRun dev mode
bun run dev