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

@vitral/schedule

v0.2.0

Published

Framework-free calendar and scheduler for Vitral: the engine (views, periods, recurrence, layout) and a DOM renderer with the keyboard, the pointer gestures and accessibility, which the Vue, React and Angular components wrap.

Readme

@vitral/schedule

A calendar and scheduler with no framework in it: the engine and a DOM renderer, which the Vitral components wrap.

Month, week, day, agenda and timeline. The grids are WAI-ARIA grids named by the period on show: one cell holds the tab stop and the arrow keys move it, Shift with the arrows selects a range and Enter picks it — the keyboard way to drag across empty time. Events are buttons named by their title and full time; Alt with the arrows moves one and Alt+Shift changes its end, and each change is announced.

import { createSchedule } from '@vitral/schedule';

const schedule = createSchedule(element, {
    view: 'week',
    date: new Date(),
    events: [{ id: 1, title: 'Standup', start: '2026-09-14T09:00', end: '2026-09-14T09:15', recurrence: 'FREQ=WEEKLY;BYDAY=MO,WE' }],
    on: {
        'event-change': ({ start, end, revert }) => save(start, end).catch(revert),
        'range-change': (range) => fetchEvents(range)
    }
});

schedule.update({ events });
schedule.destroy();

A pointer drags events, their end edge, and empty time. Every change is shown at once and reported with a revert(), so an application that refuses one puts it back. Recurring events are expanded from an RRULE; all dates are local, and nothing here converts time zones.

@vitral/schedule/engine is the arithmetic on its own: which views, which period, what is on in it, and what everything is called. No DOM, no timers.

Documentation

LGPL-3.0-or-later. Part of the Vitral monorepo.