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

@bpdm/scheduler

v0.2.1

Published

React scheduler/calendar for the bpdm design system — day, week and month views over one shared headless core. Typed, themeable, accessible.

Readme

@bpdm/scheduler

A themeable, accessible React scheduler / calendar component — day, week, work-week, month, timeline, agenda and year views, event overlap layout, client- or server-side data, and full internationalization. Built on the framework-agnostic @bpdm/scheduler-core.

npm version license

Part of the bpdm design system — it reads the same design tokens as the rest of bpdm/ui, so it themes with your app out of the box.


Features

  • Every viewday, week, workWeek, month, timeline, agenda, year, switchable from the toolbar.
  • Event layout — overlapping events are packed into side-by-side columns automatically.
  • Client or server data — pass events for in-memory data, or a dataSource that fetches only the visible range from your backend.
  • Internationalized — every string is overridable via messages, with locale-aware date formatting; RTL-friendly.
  • Configurable grid — day start/end hours, initial scroll position, week start day, and a scrollable max height.
  • Interaction hooksonEventClick, slot selection and event creation, or bring your own dialog.
  • Themeable & accessible — semantic CSS variables, keyboard support, and prefers-reduced-motion respected.
  • SSR-friendly — inject now for deterministic server rendering.

Install

npm install @bpdm/scheduler

react and react-dom (18 or 19) are peer dependencies.

Usage

import { Scheduler, type CalendarEvent } from "@bpdm/scheduler";
import "@bpdm/scheduler/styles.css";

const events: CalendarEvent[] = [
  { id: "1", title: "Standup", start: new Date("2026-01-05T09:00"), end: new Date("2026-01-05T09:30") },
  { id: "2", title: "Design review", start: new Date("2026-01-05T14:00"), end: new Date("2026-01-05T15:00") },
];

export function App() {
  return <Scheduler events={events} defaultView="week" weekStartsOn={1} />;
}

For server data, pass a dataSource instead of events — the scheduler requests only the range each view needs.

License

MIT © bpdm