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

@francocdev/ai-chat-widget

v0.5.6

Published

Drop-in AI chat widget for React apps. Configurable, themeable, with Markdown support.

Downloads

1,113

Readme

@francocdev/ai-chat-widget

Drop-in AI chat widget for React apps. Configurable, themeable, with Markdown support. Styles are auto-injected — no CSS import needed. Built on the Vercel AI SDK v6.

npm install @francocdev/ai-chat-widget

Quick Start

// 1. Wrap your app with the provider
import { ChatWidgetProvider, ChatTrigger } from "@francocdev/ai-chat-widget";

function App() {
  return (
    <ChatWidgetProvider
      config={{
        apiEndpoint: "/api/chat",
        title: "Ask me anything",
        subtitle: "Powered by Groq + Llama",
      }}
    >
      <YourApp />
      <ChatTrigger />
    </ChatWidgetProvider>
  );
}
// 2. Create your API route (Next.js App Router)
// app/api/chat/route.ts
import { createChatRoute } from "@francocdev/ai-chat-widget/server";

export const POST = createChatRoute({
  apiKey: process.env.OPENAI_API_KEY!,
  model: "gpt-4o-mini",
  systemPrompt: "You are a helpful assistant.",
});

Astro

---
// src/pages/api/chat.ts
import { createChatRoute } from "@francocdev/ai-chat-widget/server";

export const POST = createChatRoute({
  apiKey: import.meta.env.GROQ_API_KEY,
  baseURL: "https://api.groq.com/openai/v1",
  model: "llama-3.3-70b-versatile",
  systemPrompt: "You are Franco's portfolio assistant.",
});

Configuration

<ChatWidgetProvider
  config={{
    apiEndpoint: "/api/chat",          // default
    title: "Ask me anything",           // default
    subtitle: "Powered by AI",           // default
    placeholder: "Type a message...",    // default
    emptyStateMessage: "Ask me anything!", // default
    storageKey: "ai-chat-widget",        // localStorage prefix
    theme: { /* see below */ },
  }}
>

Theming

Override CSS custom properties to match your brand. All values use HSL format.

:root {
  --acw-primary: hsl(220 20% 10%);
  --acw-primary-foreground: hsl(0 0% 98%);
  --acw-muted: hsl(220 15% 95%);
  --acw-card: hsl(0 0% 100%);
  --acw-border: hsl(220 13% 91%);
  --acw-foreground: hsl(220 20% 10%);
  --acw-muted-foreground: hsl(220 9% 46%);
  --acw-background: hsl(0 0% 100%);
  --acw-destructive: hsl(0 84% 60%);
  --acw-ring: hsl(220 20% 10%);
}

Server API

createChatRoute(config) — Returns a standard Request → Response handler.

| Option | Type | Default | Description | |--------|------|---------|-------------| | apiKey | string | — | API key for the provider | | baseURL | string | https://api.openai.com/v1 | Custom provider base URL | | model | string | gpt-4o-mini | Model ID | | systemPrompt | string \| () => string \| Promise<string> | — | Static prompt or async builder |

Async system prompt — fetch data at request time:

export const POST = createChatRoute({
  apiKey: process.env.OPENAI_API_KEY!,
  systemPrompt: async () => {
    const products = await db.product.findMany();
    return `You are a store assistant. Products: ${JSON.stringify(products)}`;
  },
});

Exports

| Export | Kind | Description | |--------|------|-------------| | ChatWidgetProvider | Component | Context provider for configuration | | ChatTrigger | Component | Floating button + panel (drop-in) | | ChatWidget | Component | Chat panel only (no trigger button) | | useChatWidgetConfig | Hook | Read config from context | | createChatRoute | Function | Server route factory | | ChatWidgetConfig | Type | Config shape | | ChatRouteConfig | Type | Server config shape | | ChatWidgetTheme | Type | Theme shape |

Peer Dependencies

This package expects your project to already have:

| Package | Version | |---------|---------| | ai | ^6.0.0 | | @ai-sdk/react | ^3.0.0 | | @ai-sdk/openai | ^3.0.0 | | react | ^18 \|\| ^19 | | react-dom | ^18 \|\| ^19 |

Any OpenAI-compatible provider works (Groq, Together, Fireworks, etc.) by setting baseURL and apiKey.

License

MIT