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

streemo-ui-kit-web

v0.1.17

Published

Production-ready React TypeScript UI kit for Streemo ecosystem — design tokens, theme, base components, chat and video call UI

Readme

streemo-ui-kit-web

Production-ready React TypeScript UI kit for the Streemo ecosystem: design tokens, theme system, base components, chat UI, and video call UI.

Install

npm install streemo-ui-kit-web react react-dom

Setup

  1. Import styles (e.g. in your root). Base styles are required; chat and call styles only if you use those components:
import 'streemo-ui-kit-web/styles.css'
// If using chat UI:
import 'streemo-ui-kit-web/chat/styles.css'
// If using call UI:
import 'streemo-ui-kit-web/call/styles.css'
  1. Wrap your app with StreemoThemeProvider (optional but recommended):
import { createTheme, StreemoThemeProvider } from 'streemo-ui-kit-web/theme'

const theme = createTheme({
  mode: 'light',
  tokens: {
    colors: { primary: '#6C63FF' },
    radius: { md: 12 },
  },
})

<StreemoThemeProvider theme={theme}>
  <App />
</StreemoThemeProvider>

Imports

Root (main components + theme):

import { Button, Card, Input, Modal } from 'streemo-ui-kit-web'

Theme:

import { createTheme, StreemoThemeProvider, useTheme } from 'streemo-ui-kit-web/theme'

Chat:

import {
  ChatLayout,
  MessageList,
  MessageBubble,
  MessageInput,
  TypingIndicator,
} from 'streemo-ui-kit-web/chat'

Video call:

import {
  CallLayout,
  ParticipantGrid,
  ParticipantTile,
  CallControlsBar,
} from 'streemo-ui-kit-web/call'

Hooks & types:

import { useChatScroll, useParticipantLayout } from 'streemo-ui-kit-web/hooks'
import type { Message, Participant, Theme } from 'streemo-ui-kit-web/types'

Commands

  • npm run build — build the library (output in dist/)
  • npm run dev — watch build
  • npm run demo — run the demo/playground (Vite)
  • npm run storybook — run Storybook (port 6006)
  • npm run build-storybook — build static Storybook
  • npm run clean — remove dist/
  • npm run version — apply changesets and bump version
  • npm run release — publish to npm (after version)

Project structure

streemo-ui-kit-web/
  src/
    theme/          — createTheme, StreemoThemeProvider, tokens
    types/          — Message, Participant, Theme, etc.
    components/ui/   — Button, Input, Card, Modal, …
    chat/           — ChatLayout, MessageList, MessageInput, …
    call/           — CallLayout, ParticipantGrid, CallControlsBar, …
    hooks/          — useChatScroll, useParticipantLayout
    styles.css      — theme-aware base + component styles
    index.ts
    theme/index.ts
    chat/index.ts
    call/index.ts
    ui/index.ts
    hooks/index.ts
    types/index.ts
  demo/             — Vite app for development preview
  dist/             — build output (ESM + d.ts + styles.css)

License

Proprietary / Streemo.