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

jervis-kanban

v0.0.0-alpha.7

Published

A full-featured Kanban board component for Vue 2 & Vue 3 with drag-and-drop, swimlanes, and more.

Readme

jervis-kanban

A full-featured Kanban board component library for Vue 2 & Vue 3

npm version

Documentation · Getting Started · API Reference


Zero external dependencies (except vue-demi for cross-version compatibility). Pure CSS styling with 30+ CSS custom properties for full theming control.

Features

| Feature | Description | | --------------- | --------------------------------------------------------------- | | Drag & Drop | Cards between columns and swimlanes (native HTML5 API) | | Columns | Add, edit, delete, collapse, reorder, WIP limits | | Cards | Full CRUD — title, description, labels, assignees, metadata | | Swimlanes | Horizontal lanes to group cards, collapsible | | v-model | Two-way binding on the entire board state | | Slots | Customize every part — card, column title, actions, empty state | | RTL | Built-in right-to-left support | | Theming | 30+ CSS custom properties | | TypeScript | Fully typed API with exported interfaces |

Installation

npm install jervis-kanban

Quick Start

Global Plugin

import { createApp } from "vue";
import App from "./App.vue";
import JervisKanban from "jervis-kanban";
import "jervis-kanban/dist/style.css";

createApp(App).use(JervisKanban).mount("#app");

Tree-Shakable Import

<script setup lang="ts">
import { ref } from "vue";
import { KanbanBoard } from "jervis-kanban";
import "jervis-kanban/dist/style.css";
import type { KanbanBoardType } from "jervis-kanban";

const board = ref<KanbanBoardType>({
  columns: [
    { id: "1", title: "To Do", order: 0, color: "#ef4444" },
    { id: "2", title: "In Progress", order: 1, color: "#f59e0b" },
    { id: "3", title: "Done", order: 2, color: "#22c55e" },
  ],
  cards: [
    { id: "c1", title: "Design mockups", columnId: "1", order: 0 },
    {
      id: "c2",
      title: "Build API",
      columnId: "2",
      order: 0,
      labels: [{ id: "l1", text: "Backend", color: "#6366f1" }],
    },
  ],
  swimlanes: [],
});
</script>

<template>
  <KanbanBoard v-model="board" @card-move="handleMove" />
</template>

Full documentation → jervis-kanban

API Overview

Props

| Prop | Type | Default | Description | | ----------------- | ----------------- | --------- | ------------------------------------------ | | v-model | KanbanBoardType | {} | Board state | | canAddColumn | boolean | true | Show add column button | | canEditColumn | boolean | true | Allow column editing | | canDeleteColumn | boolean | true | Allow column deletion | | canAddCard | boolean | true | Show add card button | | canEditCard | boolean | true | Allow card editing | | canDeleteCard | boolean | true | Allow card deletion | | canAddSwimlane | boolean | true | Show add swimlane button | | forwardOnly | boolean | false | Restrict cards to forward-only movement | | columnTitleKey | string | "title" | Which column field to use as display title |

Events

| Event | Payload | | ------------------------------------------------------------------- | --------------------- | | card-click | KanbanCard | | card-move | CardMoveEvent | | card-create / card-update / card-delete | { cardId, ... } | | column-move / column-create / column-update / column-delete | { columnId, ... } | | swimlane-create / swimlane-update / swimlane-delete | { swimlaneId, ... } |

Slots

board-header · column-header · add-column · card · column-title · column-actions · add-card · empty · card-form · column-form · swimlane-form

All column slots expose action functions (addCard, editColumn, deleteColumn, toggleCollapse) so you can call any action from any slot.

Form modal slots (card-form, column-form, swimlane-form) let you replace the built-in modals with your own custom forms. They expose isOpen, isEditing, save, and cancel props.

Theming

.my-board {
  --jk-color-bg: #0f172a;
  --jk-color-surface: #1e293b;
  --jk-color-text: #f8fafc;
  --jk-color-primary: #818cf8;
  --jk-column-width: 320px;
}

See full theming guide for all 30+ CSS variables.

License

MIT