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

@keystrokehq/zoom

v0.0.1

Published

Zoom meetings, webinars, recordings, reporting, and webhook helpers for Keystroke workflows.

Downloads

47

Readme

@keystrokehq/zoom

Zoom meetings, webinars, recordings, reporting, and webhook helpers for Keystroke workflows.

This package is a single-mode official integration. The package root is intentionally non-canonical; use explicit subpaths instead:

  • @keystrokehq/zoom/connection
  • @keystrokehq/zoom/client
  • @keystrokehq/zoom/schemas
  • @keystrokehq/zoom/events
  • @keystrokehq/zoom/triggers
  • @keystrokehq/zoom/verification
  • @keystrokehq/zoom/meetings
  • @keystrokehq/zoom/webinars
  • @keystrokehq/zoom/recordings
  • @keystrokehq/zoom/reports

Connection

Use the public Zoom connection for connected-account workflow operations:

import { zoom } from '@keystrokehq/zoom/connection';

The package intentionally uses a Keystroke-owned fetch client instead of zoomus or @zoom/rivet so the OAuth token lifecycle, runtime ownership, and webhook handling stay aligned with the official integration model.

Meetings

import { createMeeting, listMeetings } from '@keystrokehq/zoom/meetings';

const created = await createMeeting.run({
  topic: 'Customer onboarding call',
  type: 'scheduled',
  startTime: '2026-04-10T16:00:00Z',
  duration: 30,
  settings: {
    waitingRoom: true,
    autoRecording: 'cloud',
  },
});

const meetings = await listMeetings.run({
  userId: 'me',
  type: 'scheduled',
  pageSize: 25,
});

Webinars

import { addWebinarRegistrant, getWebinar } from '@keystrokehq/zoom/webinars';

const webinar = await getWebinar.run({
  webinarId: '81234567890',
});

await addWebinarRegistrant.run({
  webinarId: webinar.id,
  registrant: {
    email: '[email protected]',
    firstName: 'Ada',
    lastName: 'Lovelace',
  },
});

Recordings And Reports

import {
  getMeetingSummary,
  listRecordings,
} from '@keystrokehq/zoom/recordings';
import { getDailyUsageReport } from '@keystrokehq/zoom/reports';

const recordings = await listRecordings.run({
  userId: 'me',
  from: '2026-04-01',
  to: '2026-04-09',
});

const summary = await getMeetingSummary.run({
  meetingId: recordings.meetings[0]?.id ?? 'meeting-id',
});

const report = await getDailyUsageReport.run({
  year: 2026,
  month: 4,
});

Webhooks

import { webhooks } from '@keystrokehq/zoom/triggers';

const meetingStarted = webhooks.meetingStarted({
  name: 'Zoom Meeting Started',
  transform: (payload) => ({
    meetingId: payload.meeting.id,
    topic: payload.meeting.topic,
  }),
});

Zoom requires both signed delivery verification and endpoint URL validation. The package exports verifyZoomWebhookRequest() and createZoomEndpointValidationResponse() from @keystrokehq/zoom/verification for the signature and CRC logic.

Supported direct-binding webhook helpers cover:

  • meeting.created
  • meeting.updated
  • meeting.started
  • meeting.ended
  • meeting.registration_created
  • webinar.created
  • webinar.updated
  • webinar.started
  • webinar.ended
  • webinar.registration_created
  • recording.completed

Caveats

  • Some Zoom APIs are plan-gated or admin-scoped, especially reporting, archived files, devices, and AI meeting summaries.
  • Zoom uses UUIDs on several historical endpoints; values that begin with / or contain // must be double-encoded, which the client wrapper handles automatically.
  • Zoom does not expose a native "upcoming meeting" or "upcoming webinar" webhook event. Upcoming-event workflows should use scheduled polling against meetings or webinars APIs instead of waiting for a webhook.
  • Recurring meetings arrive on the standard meeting.* webhook events with occurrence metadata rather than through separate recurring-meeting event names.
  • Zoom's endpoint.url_validation response body must echo the incoming plainToken, so CRC handling currently lives in the exported verification helpers instead of the direct-binding trigger helpers.