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

react-calendly-scheduler

v0.0.11

Published

<img width="821" height="561" alt="image" src="https://github.com/user-attachments/assets/25046af8-2295-449c-a14e-d16c4d03e56b" />

Readme

react-calendly-scheduler

📅 Overview

This package provides a prebuilt React component that replicates Calendly’s scheduling page experience without relying on an iframe.

Instead of embedding Calendly’s hosted UI, the component renders a native React scheduling interface and communicates with Calendly’s API via https://components.calforce.pro. This gives you full control over styling, layout, and behavior while preserving Calendly’s scheduling functionality.

Installation

npm install react-calendly-scheduler

Usage

import CalendlyScheduler from "react-calendly-scheduler";
import "react-calendly-scheduler/styles.css";

function App() {
  return (
    <CalendlyScheduler
      clientId="your-calendly-components-client-id"
      eventTypeUuid="your-event-type-uuid"
    />
  );
}

Props

| Prop | Type | Required | Description | |------|------|----------|-------------| | clientId | string | Yes | Your Calendly Components API client ID | | eventTypeUuid | string | Yes | The UUID of the Calendly event type to display | | availabilityOnly | boolean | No | When true, disables time slot selection and hides the booking form. Useful for displaying availability without allowing bookings. | | submitButtonText | string | No | Custom text for the booking form submit button. Defaults to "Schedule Event". | | locationAvailability | LocationOption[] | No | Array of location options that allow users to switch between different event types. Each option has name and eventTypeUuid. |

Location Availability

The locationAvailability prop enables a unified calendar view where users can select between different locations (each backed by a separate Calendly event type). This is useful when you offer the same service in different formats (e.g., in-person vs virtual).

import { CalendlyScheduler, LocationOption } from "react-calendly-scheduler";
import "react-calendly-scheduler/styles.css";

const locations: LocationOption[] = [
  { name: "Video Conference", eventTypeUuid: "abc-123" },
  { name: "In Person", eventTypeUuid: "def-456" },
];

function App() {
  return (
    <CalendlyScheduler
      clientId="your-client-id"
      eventTypeUuid="abc-123"
      locationAvailability={locations}
    />
  );
}

Styling

The component comes with pre-compiled CSS. No Tailwind CSS installation is required in your project.

Import the stylesheet in your application:

import "react-calendly-scheduler/styles.css";

The component uses CSS custom properties for theming. You can override these variables to customize the appearance:

:root {
  --background: oklch(100% 0 0);
  --foreground: oklch(14.5% 0 0);
  --primary: oklch(20.5% 0 0);
  --primary-foreground: oklch(98.5% 0 0);
  --muted: oklch(97% 0 0);
  --muted-foreground: oklch(55.6% 0 0);
  --border: oklch(92.2% 0 0);
  --ring: oklch(70.8% 0 0);
  --radius: 0.625rem;
  /* ... additional variables available */
}

Dark mode is supported via the .dark class on a parent element.

License

MIT