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

@snapie/hangouts-core

v0.4.0

Published

Framework-agnostic core SDK for [Hive Hangouts](https://hangout.3speak.tv) — Twitter Spaces-style audio rooms for the Hive blockchain.

Readme

@snapie/hangouts-core

Framework-agnostic core SDK for Hive Hangouts — Twitter Spaces-style audio rooms for the Hive blockchain.

Install

npm install @snapie/hangouts-core

What's included

  • HangoutsApiClient — typed HTTP client for the Hangouts API (auth, rooms, participants, recording, host transfer, layout/view-state, guest listen)
  • loginWithKeychain() / loginWithAioha() — browser auth helpers
  • TypeScript typesRoom, RoomVisibility, AuthSession, JoinRoomResponse (isHost, isGuest, isPremium), HandRaiseEvent, recording / streaming response shapes, etc.

Quick start

import { HangoutsApiClient } from '@snapie/hangouts-core';

const client = new HangoutsApiClient({ baseUrl: 'https://hangout-api.3speak.tv' });

// List active rooms (server filters out `unlisted` rooms)
const rooms = await client.listRooms();
// rooms[i].visibility — 'public' | 'hive-internal' | 'unlisted' | undefined
// rooms[i].origin     — hostname of the site that created the room

// Auth with Hive Keychain (web)
import { loginWithKeychain } from '@snapie/hangouts-core';
const session = await loginWithKeychain(client, 'your-hive-username');

// Create a room (visibility optional, defaults to 'public')
const { room, token } = await client.createRoom(
  'My Hangout',
  'Optional description',
  undefined,             // background image URL
  'hive-internal',       // RoomVisibility — restrict to Hive accounts
);

// Join a room (auth required)
const join = await client.joinRoom('room-name');
// join.isHost, join.isGuest, join.isPremium

// Listen as an unauthenticated guest (no Hive account)
// Server stamps a `guest-{random}` identity, listen-only token.
// Rejected for `hive-internal` rooms.
const guest = await client.listenAsGuest('room-name');
// guest.isGuest === true; the LiveKit token has canPublish=false

// Transfer host to another speaker (host only)
await client.transferHost('room-name', 'newhost-username');

When to use this package

  • React Native apps (pair with @livekit/react-native for audio)
  • Non-React web apps (Vue, Svelte, vanilla JS)
  • Server-side scripts that need to interact with the Hangouts API

For React web apps, use @snapie/hangouts-react instead — it includes this package plus React hooks and UI components.

Docs

Full documentation: hangout.3speak.tv/docs

License

MIT