Socket
Book a DemoInstallSign in
Socket

@knocklabs/expo

Package Overview
Dependencies
Maintainers
2
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@knocklabs/expo

0.3.37
latest
Source
npmnpm
Version published
Weekly downloads
307
-44.88%
Maintainers
2
Weekly downloads
 
Created
Source

Knock Expo SDK

A set of components for integrating Knock in-app notifications into an Expo + React Native application.

Not using Expo? See our vanilla React Native SDK.

You can find more information about the Expo SDK in the Knock documentation.

Installation

Via NPM:

npm install @knocklabs/expo

Via Yarn:

yarn add @knocklabs/expo

Migrating from @knocklabs/react-native

As of @knocklabs/react-native v0.4.0, KnockExpoPushNotificationProvider has moved to our Expo SDK. To migrate:

  • Remove @knocklabs/react-native from your project

    NPM:

    npm uninstall @knocklabs/react-native
    

    Yarn:

    yarn remove @knocklabs/react-native
    
  • Install @knocklabs/expo

    NPM:

    npm install @knocklabs/expo
    

    Yarn:

    yarn add @knocklabs/expo
    
  • Update any import statements from @knocklabs/react-native to @knocklabs/expo

    From:

    import {
      KnockExpoPushNotificationProvider,
      KnockFeedProvider,
      KnockProvider,
      NotificationIconButton,
    } from "@knocklabs/react-native";
    

    To:

    import {
      KnockExpoPushNotificationProvider,
      KnockFeedProvider,
      KnockProvider,
      NotificationIconButton,
    } from "@knocklabs/expo";
    

Configuration

To configure the feed you will need:

  • A public API key (found in the Knock dashboard)
  • A user ID, and optionally an auth token for production environments
  • If integrating an in-app feed, a feed channel ID (found in the Knock dashboard)

Usage

You can integrate the feed into your app as follows:

import {
  KnockFeedProvider,
  KnockProvider,
  NotificationFeedContainer,
} from "@knocklabs/expo";

const YourAppLayout = () => {
  const [isVisible, setIsVisible] = useState(false);
  const notifButtonRef = useRef(null);

  return (
    <KnockProvider apiKey={process.env.KNOCK_PUBLIC_API_KEY} userId={userId}>
      <KnockFeedProvider feedId={process.env.KNOCK_FEED_ID}>
        <NotificationFeedContainer>
          <Text>Notifications go in here!</Text>
        </NotificationFeedContainer>
      </KnockFeedProvider>
    </KnockProvider>
  );
};

Headless usage

Alternatively, if you don't want to use our components you can render the feed in a headless mode using our hooks:

import { useAuthenticatedKnockClient, useNotifications, useNotificationStore } from "@knocklabs/expo";

const YourAppLayout = () => {
  const knockClient = useAuthenticatedKnockClient(
    process.env.KNOCK_PUBLIC_API_KEY,
    currentUser.id,
  );

  const notificationFeed = useNotifications(
    knockClient,
    process.env.KNOCK_FEED_ID,
  );

  const { metadata } = useNotificationStore(notificationFeed);

  useEffect(() => {
    notificationFeed.fetch();
  }, [notificationFeed]);

  return <Text>Total unread: {metadata.unread_count}</Text>;
};

FAQs

Package last updated on 18 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.