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

genistudio-bot-widget

v2.0.9

Published

A full-screen, embeddable web chat widget for GeniStudio AI chatbot integration

Readme

GeniStudio Web Chat Widget

npm version License: MIT CDN TypeScript Bundle Size

A lightweight, responsive chat widget for easily integrating GeniStudio AI chatbot on any website.

This modern web widget provides a featured chat interface that works across all devices.

Features

  • Simple Integration - Just a few lines of code to add to any website
  • Responsive Design - Works on desktop and mobile devices
  • Real-time Chat - WebSocket-based communication
  • Typing Indicators - Shows when AI is typing a response
  • Customizable - Change colors, position, and appearance
  • Popup Animation - Smooth animation when opening the chat
  • Full-screen Mode - Expand button for fullscreen experience (working on it)
  • Mobile Optimization - Automatically adapts to smaller screens
  • Performance - Fast loading, minimal dependencies
  • Accessibility - Built with accessibility in mind (working on it)

Quick Start

Add the GeniStudio web chat widget to any website with just a few lines of code:

<!DOCTYPE html>
<html>
<head>
  <title>My Website</title>
  <!-- Include the CSS -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/genistudio-bot-widget@latest/dist/index.cdn.css">
</head>
<body>
  <!-- Your website content -->
  
  <!-- Configure the widget before loading the script -->
  <script>
    window.GeniStudioConfig = {
      chatbotId: 'your-chatbot-id',             // Your chatbot ID
      chatbotName: 'Your Bot Name',             // Name displayed in chat header
      userEmail: '[email protected]',           // Optional - auto-generated if not provided
      buttonColor: '#your-color'               // This color themes the entire widget
    };
  </script>
  
  <!-- Load the GeniStudio script -->
  <script src="https://cdn.jsdelivr.net/npm/genistudio-bot-widget@latest/dist/index.cdn.js"></script>
</body>
</html>

That's it! The chat widget will automatically initialize and add a chat button to your website with a beautiful, responsive interface.

Configuration Options

Configure the widget by setting properties in the window.GeniStudioConfig object before loading the script:

window.GeniStudioConfig = {
  chatbotId: 'your-chatbot-id',           // Your unique chatbot ID (required)
  chatbotName: 'Your Bot Name',           // Name displayed in chat header
  userEmail: '[email protected]',          // Optional - will be auto-generated if not provided
  buttonColor: '#your-color',             // Chat button color (themes entire widget)
  position: 'bottom-right'                // Position: 'bottom-right', 'bottom-left', 'top-right', 'top-left'
};

CDN Usage

The library is available via CDN for simple integration:

<!-- Include the CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/genistudio-bot-widget@latest/dist/index.cdn.css">

<!-- Include the JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/genistudio-bot-widget@latest/dist/index.cdn.js"></script>

Configuration Reference

All available options for customizing your chat widget:

| Option | Required | Default | Description | |--------|----------|---------|-------------| | chatbotId | Yes | - | Your chatbot ID (e.g. 'cm9jc4y3c0001kz046c5vipcl') | | chatbotName | No | 'GeniStudio Support' | Name shown in chat header | | userEmail | No | auto-generated | User identifier for the chat session | | buttonColor | No | '#0091ae' | Chat button color (CSS color) | | position | No | 'bottom-right' | Button position: 'bottom-right', 'bottom-left', 'top-right', 'top-left' |

Mobile Support

The widget is fully responsive and optimized for mobile devices:

  • Adapts to full-screen on mobile devices for better user experience
  • Touch-friendly interface elements
  • Optimized for different screen sizes
  • Smooth animations and transitions
  • Expand button for toggling fullscreen mode on any device

Privacy and Security

  • The widget operates fully within your website's domain
  • All communications use secure WebSocket connections
  • No user data is stored unless explicitly configured

License

MIT License - see LICENSE file for details.