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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@humanfirst-chat/js

v0.2.2

Published

HumanFirst.chat JavaScript SDK

Downloads

40

Readme

HumanFirst.chat JS SDK

JavaScript SDK for embedding the HumanFirst.chat widget and controlling it from your app.

Install

pnpm add @humanfirst-chat/js

Quick start (React / Next.js)

"use client";

import { useEffect } from "react";
import HFChat from "@humanfirst-chat/js";

export function SupportChat() {
  useEffect(() => {
    void HFChat.init({ siteId: "YOUR_SITE_ID" });
  }, []);

  return null;
}

Identify a user

HFChat.identify({
  email: "[email protected]",
  name: "Jane Doe",
  userId: "user_123",
  plan: "pro",
});

When to call identify():

  • Can be called at any time — before or after the widget loads
  • Call it when the user logs in, or whenever user data becomes available
  • Can be called multiple times; new data is merged with existing metadata
  • The visitor is immediately updated in the agent dashboard
// Example: Identify after login
import { useEffect } from "react";
import { useUser } from "./auth"; // your auth hook
import HFChat from "@humanfirst-chat/js";

export function ChatIdentifier() {
  const user = useUser();

  useEffect(() => {
    if (!user?.email) return;

    HFChat.identify({
      email: user.email,
      name: user.name,
      plan: user.plan,
    });
  }, [user]);

  return null;
}

Control visibility

HFChat.show();
HFChat.hide();
HFChat.open();
HFChat.close();
HFChat.toggle();

Open with focus

HFChat.open({ focus: true });

Custom CTA on a specific page (example: /premium)

Use a page-level CTA that opens the chat with focus, and hide the default launcher on that route.

"use client";

import { useEffect } from "react";
import { usePathname } from "next/navigation";
import HFChat from "@humanfirst-chat/js";

export function PremiumChatCTA() {
  const pathname = usePathname();

  useEffect(() => {
    if (pathname !== "/premium") return;
    HFChat.hide();
    return () => HFChat.show();
  }, [pathname]);

  return (
    <button type="button" onClick={() => HFChat.open({ focus: true })}>
      Any question? Chat with me
    </button>
  );
}

Configuration

HFChat.init({
  siteId: "YOUR_SITE_ID",
  hidden: false,
  logs: "minimal",
});

Advanced (self-hosted / custom CDN)

void HFChat.init({
  siteId: "YOUR_SITE_ID",
  scriptSrc: "https://cdn.example.com/widget.js",
  baseURL: "https://your-hfchat.example.com",
});

Notes

  • Client-side only: call HFChat.init() in the browser (e.g. useEffect).
  • On localhost, siteId is required.
  • Methods are queued until the widget finishes loading.