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

schedulely

v0.3.5

Published

CSS-grid based React calendar with a focus on extensibility and small package size

Readme

Schedulely

Prerelease

This component is still very early in development. Everything is currently still subject to massive change, so use at your own risk! Don't be surprised if you run into major or breaking bugs until we hit the 1.0.0 release.

Schedulely Preview

📚 Live Previews & Documentation


npm npm bundle size NPM

📃 Description

A react-based, light-weight, highly customizable Month calendar for React-based applications.

  • Extremely small deployed package size (less than 5kb when minified & g-zipped)
  • Entire design is based on CSS-grid, so it is fully responsive and fast
  • Easy to override default components to add unique behavior and styles

The ultimate goal for this library was to create a framework that allowed for users to create their own calendar and components for use in the grid system. This allows for users to easily add additional functionality without bloating the base library with features not everyone may want.

The included default calendar components can be simply used as is, but the real power is being able to easily override these components. This allows consumers to use any state-management, styles, UX, or whatever without needing them included in this library, and without interfering with it's overall behavior.

Development

Projects

| location | description | | ------------------------ | ---------------------------------------------------------------------------- | | ./packages/Schedulely | The Schedulely component that is used to create the NPM package | | ./apps/schedulely-docs | The Docusaurus project that contains the formal documentation for Schedulely |

Turborepo

This project uses Turborepo for building, so many of these tasks are additive and will call other tasks.

The following commands are used for development:

| command | description | | ------------------ | ------------------------------------------------------------------------- | | npm run build | Build all artifacts (Schedulely and docs) | | npm run rollup | Build the Schedulely NPM package artifact | | npm run dev | Run Schedulely within Ladle. This is used for real-time local development | | npm run test | Run Jest unit tests for Schedulely | | npm run dev-docs | Run Docusaurus documentation with real-time updates. |

Documentation Development

The documentation project builds Schedulely and adds it directly to the documentation pages. It does not utilize a released NPM package. This ensures that the documentation always reflects exactly what is on main, and doesn't require us to continually keep bumping the Schedulely package version between releases.