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

@austial/chatbot-widget

v1.2.0

Published

A modern, embeddable React-based chatbot widget with streaming support and full customization

Downloads

1,368

Readme

Austial Chatbot Widget

A lightweight, customizable React chatbot component that seamlessly integrates with the Austial platform for AI-powered customer conversations.

npm version License: MIT

Chatbot Preview

Dashboard Preview

Features

  • Easy Integration - Use as npm package or script tag
  • Cloud-Configured - All settings managed via Austial dashboard
  • Responsive Design - Works seamlessly on all devices
  • Secure - API key authentication with configurable security settings

Prerequisites

Before using this widget, you need to:

  1. Sign up at Austial
  2. Create a chatbot in your Austial dashboard
  3. Get your credentials:
    • Business ID
    • API Key

All chatbot configurations (appearance, behavior, knowledge base, AI instructions, etc.) are managed through the Austial dashboard.

Installation

NPM (React Applications)

npm install @austial/chatbot-widget

Script Tag (Any Website)

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

Quick Start

React Usage

import { Chatbot } from '@austial/chatbot-widget'
import '@austial/chatbot-widget/dist/style.css'

function App() {
  return (
    <Chatbot
      config={{
        businessId: 'your-business-id',
        apiKey: 'your-api-key',
      }}
    />
  )
}

HTML/JavaScript Usage

<!DOCTYPE html>
<html>
  <body>
    <h1>My Website</h1>

    <script src="https://unpkg.com/@austial/chatbot-widget@latest/dist/austial-chatbot.iife.js"></script>
    <script>
      window.AustialChatbot.init({
        businessId: 'your-business-id',
        apiKey: 'your-api-key',
      })
    </script>
  </body>
</html>

Configuration

The widget only requires two parameters:

{
  businessId: string // Your unique business identifier from Austial
  apiKey: string // Your API key from Austial dashboard
}

All other configurations are managed through your Austial Dashboard:

Dashboard Configuration Options

  • Business Information - Name, description, branding
  • Chatbot Settings - Bot name, avatar, welcome message, placeholder text
  • UI Interface - Colors, position, themes, styling
  • Knowledge Base - Upload files and documents for AI training
  • AI Instructions - Custom prompts and behavior rules
  • Security - Access control, rate limiting, domain restrictions
  • Analytics - Conversation insights and performance metrics

Austial Platform

The widget connects to the Austial platform to:

  • Fetch your chatbot configuration automatically
  • Process user messages with AI
  • Store conversation history
  • Apply your custom knowledge base
  • Enforce security settings

Visit www.austial.com to:

  • Create and manage chatbots
  • Configure appearance and behavior
  • Upload knowledge base files
  • Customize AI instructions
  • View analytics and conversations
  • Manage API keys and security

Methods

Initialize

window.AustialChatbot.init({
  businessId: 'your-business-id',
  apiKey: 'your-api-key',
})

Destroy

window.AustialChatbot.destroy()

Browser Support

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

TypeScript

Full TypeScript definitions are included:

import type { ChatbotConfig, Message } from '@austial/chatbot-widget'

Support

License

MIT © Austial