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

btwfyi

v0.2.0

Published

Do you suffer from brain rot due to too much TikTok? Can't read your own handwriting? Get servere anxiety from hearing 'Jira', 'Trello' or 'Lane'? With Btwfyi it's impossible to forget your tasks. Does what it must do and nothing else. Even aesthetically

Readme

btwfyi

btwfyi (verb)
/ˈwi.ɡi.loː/ — Latin, "to watch, stay alert, keep aware."

A lightweight task awareness overlay for development environments. btwfyi keeps tasks visible on top of your interface, helping you stay focused, plan effectively, and avoid forgetting important work. Designed for developers who want persistent task clarity without leaving the UI.

Installation

npm install @remcostoeten/btwfyi
# or
pnpm add @remcostoeten/btwfyi
# or
yarn add @remcostoeten/btwfyi

Usage

React

import { Btwfyi } from "@remcostoeten/btwfyi/react";
import type { CategoryConfig } from "@remcostoeten/btwfyi/react";

const categories: CategoryConfig[] = [
  {
    id: "my-tasks",
    displayName: "My Tasks",
    items: [
      { text: "Fix bug in login flow", action: "fix" },
      { text: "Add user profile page", action: "add" },
    ],
  },
];

function App() {
  return (
    <div>
      <Btwfyi category="my-tasks" categories={categories} enabled={true} />
    </div>
  );
}

New Features

Smart Syntax

Natural language task entry with automatic parsing:

  • Dates: "tomorrow", "next friday", "dec 31"
  • Tags: #bug, #feature, #urgent
  • Priority: !high, !medium, !low
"Fix login bug tomorrow #auth !high" 
→ { text: "Fix login bug", dueDate: [tomorrow], tags: ["auth"], priority: "high" }

Bulk Import

Paste Markdown lists directly into the Command Palette:

- Fix login bug #auth
- Add dark mode #ui !medium
- Update docs

AI Enhancement

  • Local AI: Uses Chrome's window.ai (Gemini Nano) for offline task enhancement
  • Cloud AI (Grok): Pass aiConfig={{ grokApiKey: '...' }} for smarter parsing

Import/Export

  • Export: Copy tasks as Markdown, JSON, or Slack format
  • Import: Paste JSON arrays or Markdown lists

Command Palette

Press Alt + K anywhere in your app to open the btwfyi command palette. Search across every mounted overlay, jump directly to a task, or type btwfyi to enter management mode where you can show/hide overlays, clear connections, or reset statuses globally.

API

React Component

Props

  • category: string - The category ID to display
  • categories: CategoryConfig[] - Array of category configurations
  • instanceId?: string - Optional instance identifier
  • enabled?: boolean - Whether the component is enabled (default: true)
  • onTaskCreate?: (task) => void - Callback when a task is created via Smart Syntax
  • aiConfig?: { grokApiKey?: string; preferCloud?: boolean } - AI configuration

CategoryConfig

type CategoryConfig = {
  id: string;
  displayName?: string;
  items: TodoItem[];
};

type TodoItem = {
  text: string;
  action?: string;
  info?: string;
  description?: string;
  notes?: string;
  dueDate?: Date | string;
  priority?: "low" | "medium" | "high";
  tags?: string[];
  createdAt?: string;
  updatedAt?: string;
};

Vue Composition

import { useBtwfyiStore } from "@remcostoeten/btwfyi/vue";

const { state, store } = useBtwfyiStore({
  category: "dev",
  instanceId: "dev-overlay",
});

Theming

Pass themeOverrides, stylesOverrides, or set a colorMode to align btwfyi with your design tokens:

<Btwfyi
  category="dev"
  categories={categories}
  colorMode="dark"
  themeOverrides={{
    colors: { primary: "var(--brand-blue)", textMain: "text-white" },
  }}
/>

License

MIT