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

tia-chatbot

v1.1.3

Published

TIA Chatbot Widget - A reusable CDN widget for integrating TIA chatbot into any website

Downloads

1,205

Readme

TIA Widget

A reusable CDN widget for integrating the TIA chatbot into any website.

Installation

Via NPM

npm install tia-widget

Via CDN

<script src="https://unpkg.com/tia-widget@latest/dist/tia-widget.iife.js"></script>

Usage

Automatic Initialization (CDN)

Add the script tag with data attributes for auto-initialization:

<!DOCTYPE html>
<html>
<head>
  <title>My Website</title>
  <!-- Include React and ReactDOM for the widget -->
  <script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
  <script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
</head>
<body>
  <!-- Your website content -->

  <!-- TIA Widget Script -->
  <script
    src="https://unpkg.com/tia-widget@latest/dist/tia-widget.iife.js"
    data-auto-init
    data-api-url="https://your-api-endpoint.com"
    data-container-id="custom-widget-container">
  </script>
</body>
</html>

Manual Initialization

<!DOCTYPE html>
<html>
<head>
  <title>My Website</title>
  <!-- Include React and ReactDOM -->
  <script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
  <script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
</head>
<body>
  <!-- Your website content -->
  <div id="my-widget"></div>

  <!-- TIA Widget Script -->
  <script src="https://unpkg.com/tia-widget@latest/dist/tia-widget.iife.js"></script>
  <script>
    // Initialize the widget manually
    const widget = window.TIAWidget.init({
      apiUrl: 'https://your-api-endpoint.com',
      containerId: 'my-widget',
      onError: (error) => {
        console.error('TIA Widget Error:', error);
      }
    });

    // Optional: Unmount the widget later
    // widget.unmount();
  </script>
</body>
</html>

Programmatic Usage (NPM)

import { initTIAWidget } from 'tia-widget';

// Initialize the widget
const widget = initTIAWidget({
  apiUrl: 'https://your-api-endpoint.com',
  containerId: 'my-widget',
  onError: (error) => {
    console.error('Widget error:', error);
  }
});

// Later, unmount if needed
widget.unmount();

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | apiUrl | string | window.origin + routerBasename | The API endpoint URL for the TIA chatbot | | containerId | string | 'tia-widget-root' | The ID of the DOM element where the widget will be mounted | | onError | function | console.error | Error handler function |

Data Attributes (for CDN auto-init)

  • data-auto-init: Enables automatic initialization
  • data-api-url: Sets the API URL
  • data-container-id: Sets the container element ID

Publishing to NPM

npm run build:cdn
npm publish

Development

# Install dependencies
pnpm install

# Start development server
pnpm run dev

# Build for production
pnpm run build

# Build for CDN
pnpm run build:cdn

Requirements

  • React 18+
  • React DOM 18+

The widget bundles React and other dependencies, but for CDN usage, you need to include React and ReactDOM scripts separately.

License

MIT