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

@andesphereai/react

v2.0.1

Published

AndyChat React components - embeddable AI chatbot library for React applications

Readme

@andesphereai/react

AndyChat React components - embeddable AI chatbot library for React applications.

Overview

A React component library for embedding AI chatbots into React applications. Features automatic configuration loading, customizable theming, and complete integration with the AndyChat platform.

Installation

npm install @andesphereai/react
# or
yarn add @andesphereai/react
# or
pnpm add @andesphereai/react

Peer Dependencies

This package requires React as a peer dependency:

npm install react react-dom

Compatible with:

  • React 18+
  • React 19+

Quick Start

Basic Usage

import React from 'react'
import { AndyChat } from '@andesphereai/react'

function App() {
	return (
		<div>
			<h1>My App</h1>
			<AndyChat embedId="your-embed-id" />
		</div>
	)
}

export default App

With Custom Styling

import { AndyChat } from '@andesphereai/react'

function App() {
	return (
		<AndyChat
			embedId="your-embed-id"
			color="#ff6b35"
			theme="dark"
			orientation="left"
		/>
	)
}

API Reference

AndyChat Component

The main component that renders the complete chatbot experience.

Props

| Prop | Type | Default | Description | |---------------|-------------------------|-----------|---------------------------------------| | embedId | string (required) | - | Your unique chatbot embed ID | | color | string | #4086F4 | Brand primary color (hex) | | theme | 'light' \| 'dark' \| 'auto' | 'light' | Color theme | | orientation | 'left' \| 'right' | 'right' | Chat window position | | fontFamily | string | - | Custom font family | | borderRadius| string | - | Custom border radius (e.g., '8px') |

Configuration Loading

The component automatically loads configuration from your AndyChat dashboard using the provided embedId. This includes:

  • Welcome messages
  • FAQ items
  • Bot personality
  • Default styling
  • Feature toggles

Example with All Props

<AndyChat
	embedId="your-embed-id"
	color="#ff6b35"
	theme="auto"
	orientation="left"
	fontFamily="Inter, sans-serif"
	borderRadius="12px"
/>

Features

  • 🎨 Automatic theming - Loads colors, logo, and branding from dashboard
  • 📱 Mobile responsive - Optimized for all screen sizes
  • 🔒 Style isolation - Uses Shadow DOM to prevent CSS conflicts
  • Performance optimized - Code splitting and lazy loading
  • Accessible - Full keyboard navigation and screen reader support
  • 🌐 i18n ready - Supports multiple languages via dashboard config

Advanced Usage

Custom Event Handlers

import { AndyChat } from '@andesphereai/react'

function App() {
	const handleChatOpen = () => {
		console.log('Chat opened')
		// Analytics tracking, etc.
	}

	return (
		<AndyChat
			embedId="your-embed-id"
			onOpen={handleChatOpen}
		/>
	)
}

Integration with React Router

import { useLocation } from 'react-router-dom'
import { AndyChat } from '@andesphereai/react'

function App() {
	const location = useLocation()
	
	return (
		<div>
			<Routes>
				{/* Your routes */}
			</Routes>
			
			{/* Chat available on all pages */}
			<AndyChat 
				embedId="your-embed-id"
				key={location.pathname} // Reset on route change
			/>
		</div>
	)
}

TypeScript Support

Full TypeScript support with exported types:

import { AndyChat, type AndyChatProps } from '@andesphereai/react'

const MyComponent: React.FC = () => {
	const chatProps: AndyChatProps = {
		embedId: 'your-embed-id',
		color: '#ff6b35',
		theme: 'dark'
	}

	return <AndyChat {...chatProps} />
}

Bundle Size

  • Core bundle: ~15KB gzipped
  • With React: ~45KB gzipped total
  • Lazy-loaded features: FAQ, user forms load on demand

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

Contributing

See our contributing guidelines for details on how to contribute to this project.

License

MIT