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 🙏

© 2025 – Pkg Stats / Ryan Hefner

kiffarino

v0.2.1

Published

Kiffarino (kfr) is a lightweight, local-first CLI tool for managing tasks and tickets, ideal for small dev projects and personal workflows.

Readme

Kiffarino Logo

kiffarino/kfr

Kiffarino is a lightweight, local-first project management tool built for developers and small teams who prefer a simple, CLI and Web based workflow tracking tool.

It lets you manage tasks, tickets, and projects directly within your project folder — no complex setups, cloud services, or external tools required.

Just fast, minimal, local productivity.

It's like Jira, but simple and it just works.

Loosely based on another side project of mine: kiffari.

Kiffari: from sicilian (Aju) Chiffari = I've got stuff to do.

✨ Features

  • 🗃️ Local-first ticket and task management — Everything is stored locally in plain files, no cloud required.
  • Lightweight — Minimal dependencies, with a total size of ~420 KB.
  • 🏷️ Flexible ticketing — Supports tags, filters, and status tracking out of the box.
  • 🛠️ Modern stack — Built with TypeScript, Bun, and Svelte 5.
  • 📝 Markdown-based tickets — Tickets are just Markdown files you can open and edit manually anytime.

Installation

npm install -g kiffarino

Help Displays a list of available commands and usage information.

kfr help

Init

Initializes your project by creating a .kfrc configuration file. Use this file to define the path to your ticket/document folder and basic project settings.

kfr init

Generate

Generates the necessary folder structure for your ticket system, based on the .kfrc config.

kfr generate

Start

Starts the Kiffarino server locally. By default, it runs on port 3003. You can specify a different port like this:

kfr start # <- will start the server on port 3003
kfr start 5321 # <- will start the server on port 5321

TODOs

  • [x] Cli

    • [x] version
  • [ ] Tickets

    • [ ] BE

      • [x] Create
      • [x] Read
      • [x] Update
      • [x] Delete
      • [x] Move
      • [x] Archive
      • [x] Link
      • [x] Tags CRUD
      • [ ] Priority Ordering
    • [ ] FE

      • [x] Create

      • [x] Read

      • [x] Update

      • [x] Delete

      • [x] Move

      • [x] Archive

      • [ ] Show/Set Priority

      • [x] Link

        • [x] Search ticket to link
          • [x] BE Search
          • [x] Title Search moved to its own component
      • [x] Tags CRUD on Ticket

      • [ ] Priority CRUD

  • [ ] Docs

    • [ ] Create
    • [ ] Read
    • [ ] Update
    • [ ] Delete
    • [ ] Archive
  • Bugs

    • Sending malformed JSON gives a 500
  • Nice to have

    • [ ] Abstract db ops to drivers so could swap db for something else

    • [ ] Drag&Drop for Board

    • [ ] Routes to fetch Archived tickets

    • [x] Tags

      • [x] Tags Search
      • [x] Tags Autocomplete
      • [x] Implement Tags parsing
      • [x] Implement Tags Filters/Update/Create (zod)
    • [x] Ticket type

    • [ ] Short code?

    • [ ] Markdown plugins (like todo checkboxes)

      • [x] Move config to frontmatter
      • [x] Add them in multiple sections so you can have different parts of the page
      • [x] Imgs ![Alt text](/static/something.svg "a title")
    • [ ] Epic link/Milestone

    • [x] Add images on a subfolder and be able to serve it via public serve in api

      • [x] Picker to search for assets in public folder
      • [x] Folder is generated need to link static serve to local folder
      • [x] Folder forward on dev mode too
    • [ ] Add Github releases