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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pullse-ai/chat-widget

v1.0.2

Published

Pullse AI - Chat Widget

Downloads

12

Readme


Pullse AI - Chat Widget

Pullse AI is a centralized customer support platform that uses AI to deliver seamless experiences, automate routine tasks and enhance agent performance.

Documentation

Introduction

PullseChatWidget is a straightforward and easy-to-integrate chat widget for React applications. It facilitates seamless communication between users with minimal configuration.

Installation

To install the PullseChatWidget package, use the following npm command:

npm install @pullse-ai/chat-widget

or with yarn:

yarn add @pullse-ai/chat-widget

Integration

1. Import the PullseChatWidget component

Import the PullseChatWidget component in the file where you want to use the chat widget.

import PullseChatWidget from '@pullse-ai/chat-widget';

2. Add the PullseChatWidget component to your React application

Place the PullseChatWidget component within your React application, typically in a layout file or a component that is rendered across multiple pages.

import React from 'react';
import PullseChatWidget from '@pullse-ai/chat-widget';

function App() {
  const pullseChatData = {
    "token": "[email protected]",
    "userType": "customer"
  };

  return (
    <div>
      {/* Your existing components */}
      <header>
        <h1>Your React App</h1>
      </header>

      {/* Pullse Chat Widget */}
      <PullseChatWidget data={pullseChatData} />
    </div>
  );
}

export default App;

Data Prop

The PullseChatWidget component requires a data prop, which should be an object with the following format:

{
  "token": "[email protected]",
  "userType": "customer"
}

Ensure that you provide the correct token and userType for authentication and user identification.

Conclusion

Congratulations! You've successfully integrated the PullseChatWidget package into your React application. If you have any questions or need further assistance, refer to the official documentation.


This simplified documentation assumes that the primary configuration is done through the data prop, and users need to provide the necessary authentication details. Make sure to replace the placeholder text with actual details about your package's features and any additional information users might need.