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

@absolutejs/meeting-recall

v0.0.1-beta.6

Published

Recall.ai source adapter for @absolutejs/meeting — Recall joins a Google Meet / Zoom / Teams call as a bot and streams per-participant audio into the meeting core for live transcription + analysis

Readme

@absolutejs/meeting-recall

Recall.ai source adapter for @absolutejs/meeting. Recall joins a Google Meet / Zoom / Teams call as a bot and streams per-participant audio; this adapter turns that into the MeetingSource the meeting core consumes, so the @absolutejs/voice scribe can transcribe the call live with speaker labels.

One Recall integration covers all three platforms — you only pass a meeting URL.

How it works

Recall's bot dials out to a websocket you host and streams audio_separate_raw events: one stream per participant, mono 16-bit little-endian PCM at 16 kHz (exactly the scribe's input format). Your server accepts that socket and forwards each frame to source.ingest(), which decodes the PCM and emits diarized audio + participant events.

Recall bot ──(wss, per-participant PCM)──▶ your server ──source.ingest()──▶ @absolutejs/meeting ──▶ voice scribe ──▶ diarized turns

Install

bun add @absolutejs/meeting-recall @absolutejs/meeting @absolutejs/voice

Usage

import { createMeeting } from "@absolutejs/meeting";
import { createRecallMeetingSource } from "@absolutejs/meeting-recall";
import { createDeepgramStt } from "@absolutejs/voice-deepgram";

// 1. A source backed by a Recall bot. `websocketUrl` is a public wss:// URL
//    your server listens on (Recall connects out to it).
const source = createRecallMeetingSource({
  apiKey: process.env.RECALL_API_KEY!,
  baseUrl: process.env.RECALL_API_BASE_URL, // regional; defaults to us-west-2
  meetingUrl: "https://meet.google.com/abc-defg-hij",
  websocketUrl: "wss://your-app.example.com/meeting/recall",
  botName: "Deal Referee",
});

// 2. Wire it into the meeting core + a scribe STT.
const meeting = createMeeting({
  source,
  stt: createDeepgramStt({ apiKey: process.env.DEEPGRAM_API_KEY! }),
  sessionId: crypto.randomUUID(),
});
meeting.on("turn", (turn) => console.log(turn.speaker, turn.text));

await meeting.start(); // creates the bot; it joins + starts streaming

// 3. In your websocket handler, pipe each frame into the source:
//    ws.on("message", (data) => source.ingest(data));

await meeting.stop(); // bot leaves the call

Region

A Recall workspace lives in exactly one region and its key only works against that region's host. Pass region ("us-west-2" | "us-east-1" | "eu-central-1" | "ap-northeast-1") or a full baseUrl (https://us-west-2.recall.ai/api/v1). Defaults to us-west-2.

API

  • createRecallMeetingSource(options)MeetingSource & { botId, ingest }.
    • start() creates the bot with a realtime websocket endpoint pointed at websocketUrl.
    • ingest(frame) decodes a realtime frame (JSON string, bytes, or object) into audio / participant events.
    • stop() makes the bot leave the call.
  • createRecallClient(options) → a thin typed client: createBot, getBot, listBots, leaveBot, deleteBot.
  • RECALL_AUDIO_FORMAT — the PCM format Recall emits.

License

Apache License 2.0. See LICENSE.