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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@chrryai/chrry

v1.6.15

Published

A modern, cross-platform UI library for React, React Native, and Next.js

Downloads

24,675

Readme

🍒 Chrry

Production-ready React component library for building AI applications

npm TypeScript License

Extracted from Vex - A production AI platform with 6,813+ commits in 2025


✨ What is Chrry?

Chrry is a comprehensive React component library built for AI applications. It includes everything you need to build ChatGPT-like interfaces, multi-tenant app stores, and real-time collaboration features.

Key Features:

  • 🎨 50+ Components - Chat, modals, forms, layouts, and more
  • 🤖 AI-First - Built specifically for AI chat interfaces
  • 📱 Cross-Platform - Web, iOS, Android, Browser Extensions
  • 🎯 TypeScript - Full type safety throughout
  • 🌙 Dark Mode - Built-in theme support
  • 🌍 i18n - 10+ languages included
  • Performance - Optimized for production
  • 🎭 Customizable - SCSS modules for easy theming

🌶️ Pepper Router

Chrry pairs perfectly with Pepper Router - our universal router with view transitions:

npm install @chrryai/pepper

Features:

  • ⚡ Zero-latency navigation
  • 🎨 Built-in View Transitions API
  • 📱 Works in web, React Native, and browser extensions
  • 🚀 SSR-friendly

Learn more →

📦 Installation

npm install @chrryai/chrry
# or
pnpm add @chrryai/chrry
# or
yarn add @chrryai/chrry

Note: Chrry is published as TypeScript source. Your bundler (Next.js, Vite, etc.) will compile it.


🚀 Quick Start

Basic Usage

import { Chat, Button, Modal } from "@chrryai/chrry"
import { Star } from "@chrryai/chrry/icons"

function App() {
  return (
    <>
      <Chat />
      <Button>Click me</Button>
      <Star size={24} />
    </>
  )
}

With ChrryAI Layout (Full Next.js Integration)

import ChrryAI from "@chrryai/chrry/ChrryAI"
import { cookies, headers } from "next/headers"

export default async function RootLayout({ children }): Promise<JSX.Element> {
  const headersList = await headers()
  const cookieStore = await cookies()

  return (
    <ChrryAI
      apiKey={process.env.API_KEY}
      locale="en"
      headersList={headersList}
      cookieStore={cookieStore}
    >
      {children}
    </ChrryAI>
  )
}

With Standalone Chrry Provider

For non-Next.js apps or custom setups:

import Chrry from "@chrryai/chrry/Chrry"

export default function App({ children, session }) {
  return (
    <Chrry apiKey={process.env.API_KEY} locale="en">
      {children}
    </Chrry>
  )
}

📚 Documentation

Visit chrry.dev for full documentation, examples, and guides.

🛠️ Components

AI & Chat

  • Chat - Full-featured AI chat interface
  • Message - Individual message component with streaming
  • Messages - Message list with virtualization
  • Thread - Complete thread view
  • Threads - Thread list with search/filter
  • Agent - AI agent selector
  • TypingIndicator - Animated typing indicator

Layout

  • ChrryAI - Complete app layout with session management
  • Sidebar - Collapsible navigation sidebar
  • Menu - Dropdown menu component
  • Modal - Accessible modal dialogs
  • Skeleton - Loading skeletons

Forms & Input

  • Button - Customizable button component
  • Input - Text input with validation
  • Select - Dropdown select
  • Checkbox - Checkbox with label
  • Search - Search input with autocomplete
  • FileUpload - Drag & drop file upload

Data Display

  • Calendar - Full calendar with events
  • Weather - Weather widget
  • CharacterProfiles - AI personality profiles
  • Store - App store interface
  • App - Individual app card

Feedback

  • Loading - Loading spinners
  • Toast - Toast notifications
  • EmptyStateTips - Empty state with tips
  • ConfirmButton - Confirmation dialogs

Utilities

  • Image - Optimized image component
  • MarkdownContent - Markdown renderer
  • ColorScheme - Theme switcher
  • LanguageSwitcher - i18n language selector

And 20+ more components!

🎨 Theming

Chrry supports custom themes and dark mode out of the box:

import { ThemeProvider } from "@chrryai/chrry/context/providers"

function App() {
  return <ThemeProvider theme="dark">{/* Your app */}</ThemeProvider>
}

🌍 Internationalization

Built-in support for multiple languages:

import { locale } from "@chrryai/chrry/locales"

// Supports: en, es, fr, de, ja, ko, nl, pt, tr, zh

🏗️ Architecture

Chrry is built with:

  • Next.js 15 - App Router with RSC
  • TypeScript 5 - Full type safety
  • SCSS Modules - Scoped styling
  • Drizzle ORM - Type-safe database queries
  • WebSockets - Real-time features
  • next-intl - Internationalization

🌍 Supported Languages

  • English (en)
  • Spanish (es)
  • French (fr)
  • German (de)
  • Japanese (ja)
  • Korean (ko)
  • Dutch (nl)
  • Portuguese (pt)
  • Turkish (tr)
  • Chinese (zh)

🤝 Contributing

We welcome contributions! Chrry is extracted from Vex, a production AI platform.

Development

# Clone the monorepo
git clone https://github.com/chrryai/chrry.git
cd chrry

# Install dependencies
pnpm install

# Start development
pnpm dev

📄 License

See LICENSE for details.

🔗 Links


💎 Why Chrry?

Most AI component libraries are basic. Chrry is different:

Production-Ready - Extracted from a real AI platform ✅ Complete - 50+ components, not just a chat box ✅ Multi-Tenant - Build app stores, not just apps ✅ Real-Time - WebSocket collaboration built-in ✅ i18n - 10 languages out of the box ✅ TypeScript - Full type safety throughout

This is a $10M+ component library, open-sourced. 🎁


Built with ❤️ by @ibsukru

[email protected]