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

@kitbase/messaging-react

v1.1.0

Published

Kitbase In-App Messaging React SDK - React hooks and providers

Downloads

235

Readme

@kitbase/messaging-react

React bindings for the Kitbase In-App Messaging SDK. Provides a provider and hooks for automatic or custom message rendering.

Installation

npm install @kitbase/messaging-react
# or
pnpm add @kitbase/messaging-react
# or
yarn add @kitbase/messaging-react

Peer dependency: react >= 17

Quick Start

Auto-render (default)

Wrap your app with the provider — messages appear automatically with no extra code:

import { MessagingProvider } from '@kitbase/messaging-react';

function App() {
  return (
    <MessagingProvider config={{ sdkKey: 'your-sdk-key', userId: user.id }}>
      <YourApp />
    </MessagingProvider>
  );
}

Custom rendering

Set autoShow: false and use the useMessages hook to render your own UI:

import { MessagingProvider, useMessages } from '@kitbase/messaging-react';

function App() {
  return (
    <MessagingProvider config={{ sdkKey: 'your-sdk-key', autoShow: false }}>
      <MessageList />
    </MessagingProvider>
  );
}

function MessageList() {
  const { messages, markViewed, isLoading } = useMessages({
    pollInterval: 60_000,
  });

  if (isLoading) return <Spinner />;

  return messages.map((msg) => (
    <div key={msg.id}>
      <h3>{msg.title}</h3>
      <p>{msg.body}</p>
      {msg.actionButton && (
        <a href={msg.actionButton.url}>{msg.actionButton.text}</a>
      )}
      <button onClick={() => markViewed(msg.id)}>Dismiss</button>
    </div>
  ));
}

API

<MessagingProvider>

| Prop | Type | Description | |---|---|---| | config | MessagingConfig | SDK configuration (see @kitbase/messaging) | | children | ReactNode | Your app |

The provider creates a Messaging instance and cleans it up on unmount. It recreates the instance when sdkKey changes.

useMessages(options?)

Fetches messages with optional polling. For use with autoShow: false.

Options:

| Option | Type | Default | Description | |---|---|---|---| | enabled | boolean | true | Whether to fetch on mount | | pollInterval | number | — | Polling interval in ms. Omit to disable | | userId | string | — | User ID for filtering | | metadata | Record<string, string> | — | Targeting metadata |

Returns: UseMessagesResult

| Field | Type | Description | |---|---|---| | messages | InAppMessage[] | Active messages | | isLoading | boolean | Initial fetch in progress | | error | Error \| null | Most recent fetch error | | markViewed | (messageId: string) => Promise<void> | Mark as viewed and remove from list | | refresh | () => Promise<void> | Manually re-fetch |

useLazyMessages()

Fetch messages on demand (not on mount).

function InboxButton() {
  const { fetch, messages, isLoading } = useLazyMessages();

  return (
    <>
      <button onClick={() => fetch()}>Check Messages</button>
      {messages.map((msg) => <div key={msg.id}>{msg.title}</div>)}
    </>
  );
}

useMessagingContext()

Access the underlying Messaging instance directly for advanced usage (e.g., calling identify(), reset()).

const messaging = useMessagingContext();
messaging.identify('user_123');

TypeScript

All core types are re-exported for convenience:

import type {
  MessagingConfig,
  InAppMessage,
  MessageType,
  MessageButton,
  GetMessagesOptions,
} from '@kitbase/messaging-react';

License

MIT