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

@menni/chatbot

v1.1.8

Published

A modern React and Vue chatbot component with customizable UI for integration in web applications

Downloads

209

Readme

Menni Chatbot

npm version license

A modern chatbot component for React and Vue applications with customizable UI and seamless integration.

Features

  • 🎨 Customizable UI
  • 🔄 Real-time chat functionality
  • 📱 Responsive design
  • 🔒 Secure authentication with secret key
  • 🎯 Position customization (left/right)
  • 🌐 Custom welcome messages in any language
  • 💬 Customizable tooltip messages for better user engagement
  • 🚀 Auto-open functionality for specific pages
  • ⚡ Easy integration with React and Vue applications

Installation

npm install @menni/chatbot
# or
yarn add @menni/chatbot

Usage

React

import { MenniChatBot } from "@menni/chatbot/react";

function App() {
  return (
    <MenniChatBot
      secretKey="your-secret-key"
      position="bottom-right"
      defaultOpen={false}
      welcomeMessage="Hello! How can I help you today?"
      tooltipMessages={[
        "Hi 👋, how may i help you?",
        "Hi 👋, Now you can ask me anything related to bookings. Would you like me to book something for you? 🤔✨",
      ]}
    />
  );
}

Vue

<template>
  <MenniChatBot
    secretKey="your-secret-key"
    position="bottom-right"
    :defaultOpen="false"
    welcomeMessage="Hello! How can I help you today?"
    :tooltipMessages="[
      'Hi 👋, how may i help you?',
      'Hi 👋, Now you can ask me anything related to bookings. Would you like me to book something for you? 🤔✨',
    ]"
  />
</template>

<script>
import { MenniChatBot } from "@menni/chatbot/vue";

export default {
  components: {
    MenniChatBot,
  },
};
</script>

Localization Support

The Menni Chatbot widget supports full localization through customizable message props. You can provide your own welcome message and tooltip messages in any language to match your website's localization:

  • welcomeMessage: Customize the initial greeting message that users see when they open the chatbot
  • tooltipMessages: Provide an array of tooltip messages that appear to encourage user interaction

This ensures a seamless user experience that matches your website's language and tone, improving user engagement and accessibility across different markets.

Props

| Prop | Type | Required | Default | Description | | ------------------- | ------------------------------- | -------- | -------------- | --------------------------------------------- | | secretKey | string | Yes | - | Menni Secret key | | menniBokunSecretKey | string | No | - | Menni Bokun integration secret key | | welcomeMessage | string | No | - | Welcome message in language of your choice | | tooltipMessages | string[] | No | - | Array of tooltip messages to display | | defaultOpen | boolean | No | false | Whether the chatbot should be open by default | | position | 'bottom-left' | 'bottom-right' | No | 'bottom-right' | Position of the chatbot on the screen |

Framework Compatibility

  • React 17, 18, and 19
  • Next.js 13 and 14 ('use client' directive required)
  • Create React App
  • Vite

Development

# Install dependencies
npm install

# Start development server
npm run dev

# Build for production
npm run build

License

ISC

Author

Menni