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

talkative-sdk

v1.3.4

Published

SDK for Talkative, the easiest way to conduct a user interview

Downloads

64

Readme

talkative-sdk

Getting started

Add Talkative to your web app in less than 5 minutes

  1. Login to Talkative and click Create an app. Fill out all information in the Install page and note down your App ID.
  2. Run npm i talkative-sdk --save to install the SDK on your frontend.
  3. In every page that you would like to reach a user, import the package with import talkative from "talkative-sdk"; and on page load, call talkative.load(YOUR_APP_ID) where YOUR_APP_ID is the Talkative App ID of your app that you can find in the Install page.

You can reach your users on any page which has the load function called. You'll see them online in your dashboard and can call them at any time.

Advanced

Tracking events

Track and segment users you want to talk to by actions they've taken

By default, if you have the Talkative snippet installed on a page, you can see which pages your users are visiting. You can also track more granular events like completeing onboarding, pressing a Submit button or trying a new feature. Simply call talkative.track(EVENT_NAME).

Identifying users

Identify users by email to figure out who to reach out to for user interviews

  1. If you want to identify users with their email address, you can call talkative.identify(YOUR_USERS_EMAIL) on any page that has the Talkative snippet from above. As soon as you call this function, the unidentified user on your page will be labeled with YOUR_USERS_EMAIL going forward.

  2. When logging out your user, call talkative.logout() so that we no longer associate new users visiting your page in the same browser.