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

@starredev/schedule-x-plugins

v1.6.4

Published

![Schedule-X](https://schedule-x.s3.eu-west-1.amazonaws.com/schedule-x-logo.png)

Readme

Schedule-X

@starredev/schedule-x-plugins

ScheduleX is a powerful calendar application, similar as outlook/google calendar, allowing users to manage events and schedules with ease. While Schedule-X offers a solid foundation, it intentionally leaves out certain advanced features to remain lightweight and flexible.

🚀 Why These Plugins?

Thanks to its robust plugin system, I've been able to build a few custom plugins that extend Schedule-X's functionality in meaningful ways. These plugins enhance the user experience, unlock new capabilities, and tailor the calendar to fit more specific needs—features that aren't included out of the box.

  • 🖱 Drag-to-Copy: Users often need to duplicate existing events rather than create new ones from scratch.
  • 🔍 Zoom Control: In dense schedules, users want to zoom in for focus or zoom out for a broader overview.

Example at: https://starredev.github.io/schedule-x-plugins/


📦 Installation

Install the package via npm or yarn:

npm install @starredev/schedule-x-plugins

⚠️ Don’t Forget to Instantiate Required Plugins

Some plugins depend on shared services such as eventsServicePlugin and calendarControls. Make sure to instantiate them and pass them in before initializing your calendar. You can get them below

Boilerplates

VueJS Example

CopyEventPlugin

🧠 Purpose: Enables users to right-click and drag to duplicate existing events in the calendar.

✅ Features

  • Right-click on an event to begin copy-drag
  • Drag the cloned event to a new time slot
  • Automatically calculates updated start and end times
  • Executes a callback with the new event
  • Visual feedback on hover/drop target
  • Supports switch between days

🧩 Usage

import { createCalendar } from '@schedule-x/calendar'
import { createEventsServicePlugin } from '@schedule-x/events-service'
import { CopyEventPlugin } from '@starredev/schedule-x-plugins'

const eventsServicePlugin = createEventsServicePlugin()

const calendarApp = createCalendar({
  // calendar config...

  plugins: [
    eventsServicePlugin,
    new CopyEventPlugin(eventsServicePlugin, event => {
        console.log(event);
        eventsServicePlugin.add(event);
    })
  ]
})

ZoomInPlugin

🔎 Purpose: Adds mouse wheel zooming (with Ctrl) to the calendar time grid.

✅ Features

  • Ctrl + Mouse Wheel zooms in and out
  • Configurable zoom factor, step, and height
  • Defaults provided — no setup needed!

🧩 Usage

import { createCalendar } from '@schedule-x/calendar'
import { ZoomInPlugin } from '@starredev/schedule-x-plugins'
import { createCalendarControlsPlugin} from '@schedule-x/calendar-controls'

const calendarControls = createCalendarControlsPlugin()

const calendarApp = createCalendar({
  // calendar config...

  plugins: [
    eventsServicePlugin,
    calendarControls,
    new ZoomInPlugin(calendarControls)
  ],
})

// Optional: Custom zoom settings
new ZoomInPlugin(calendarControls, {
  zoomFactor: 1,         // Initial zoom (default: 1)
  minZoom: 0.5,          // Minimum zoom (default: 0.5)
  maxZoom: 2,            // Maximum zoom (default: 2)
  zoomStep: 0.2,         // Step per scroll (default: 0.2)
  baseGridHeight: 900    // Base height in px (default: 900)
});