New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@knocklabs/expo

Package Overview
Dependencies
Maintainers
0
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@knocklabs/expo

0.2.12
latest
Source
npm
Version published
Maintainers
0
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.

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 } from "@knocklabs/expo";
import create from "zustand";

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

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

  const useNotificationStore = create(notificationFeed.store);
  const { metadata } = useNotificationStore();

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

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

FAQs

Package last updated on 11 Mar 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