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

survaii-chat-pulse

v0.0.9-beta

Published

Survaii Chat Pulse allows you to track specific events on your platform (click, hover, scroll, etc.) and receive real-time notifications ("pulses") in Slack channels. Mention the Survaii bot in the channel to instantly connect with the customer via live c

Downloads

164

Readme

Survaii Chat Pulse

Survaii Chat Pulse allows you to track specific events on your platform (click, hover, scroll, etc.) and receive real-time notifications ("pulses") in Slack channels. Mention the Survaii bot in the channel to instantly connect with the customer via live chat.

Getting Started

First, sign up on Survaii and request an API key by contacting us at [email protected].

Installation

To get started, install the survaii-chat-pulse package. Run the following command in your terminal:

npm i survaii-chat-pulse

Usage

1. Import the Library

Import the initializeChat function from the survaii-chat-pulse package in your component file. Make sure the component is a client-side component, and check for window availability before initializing the chat.

import { useEffect } from 'react';
import { initializeChat } from 'survaii-chat-pulse';

const MyComponent = () => {
  useEffect(() => {
    if (typeof window !== 'undefined') {
      const chatInstance = initializeChat({
        mountId: 'chat-mount', // mount id (e.g., chat-mount)
        appKey: 'api-key',
      });

      // Example of sending a pulse
      chatInstance.updateVisibility('My first pulse');
    }
  }, []);

  return <div id="chat-mount"></div>;
};

export default MyComponent;

2. Initialize the Chat

Use the initializeChat function with the required parameters such as mountId and appKey (API key).

const chatInstance = initializeChat({
    mountId: 'chat-mount', // mount id (e.g., chat-mount)
    appKey: 'api-key',
});

3. Send a Pulse

Every time you call the updateVisibility() method, it will send a new pulse, resulting in the creation of a new Slack channel. You can pass a string parameter to provide context about this pulse.

chatInstance.updateVisibility('My first pulse');

Features

  • Event Tracking: Monitor user interactions like clicks, hovers, and scrolls.
  • Pulse Notifications: Receive real-time alerts for each event in dedicated Slack channels.
  • Instant Live Chat: Connect with customers instantly by mentioning the Survaii bot in the Slack channel.
  • Organized Communication: Each pulse creates a new Slack channel, keeping your team’s interactions clear and focused.

Benefits

  • Immediate Response: Engage with customers as soon as they interact with your platform.
  • Enhanced Support: Provide swift resolutions with real-time chat capabilities.
  • Actionable Insights: Understand customer behavior to optimize your platform.

Enhance your customer engagement and support with real-time notifications and live chat using Survaii Chat Pulse. Install today and transform your customer interaction strategy!