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

expo-ii-integration

v0.1.24

Published

Expo library to enable smartphone native applications to invoke Internet Identity through a web application

Readme

expo-ii-integration

This library enables Expo applications (both web and native) to authenticate with Internet Identity through a web application bridge. It provides a seamless integration between Expo applications and Internet Identity authentication, with different authentication flows for web and native platforms.

Security Overview

The library implements security measures to protect against:

  1. Delegation Theft: Prevents malicious applications from intercepting the delegation chain
  2. Cross-App Delegation Misuse: Ensures delegations are only used by your legitimate app
  3. Phishing Attacks: Protects against malicious apps intercepting authentication callbacks

Features

  • Seamless Internet Identity authentication in Expo apps
  • Platform-specific authentication flows:
    • Web: Modal-based authentication using iframe messaging
    • Native: Browser-based authentication using Expo WebBrowser
  • Secure key and delegation chain management
  • Automatic path restoration after authentication
  • Error handling and state management
  • Support for multiple deep link paths

Installation

npm install expo-ii-integration

Peer Dependencies

{
  "@dfinity/agent",
  "@dfinity/identity",
  "canister-manager",
  "expo-crypto-universal",
  "expo-icp-app-connect",
  "expo-icp-app-connect-helpers",
  "expo-icp-frontend-helpers",
  "expo-linking",
  "expo-router",
  "expo-storage-universal",
  "expo-web-browser",
  "react",
  "react-native"
}

Usage

Basic Setup

  1. Wrap your app with the IIIntegrationProvider:
import * as Linking from 'expo-linking';
import { Platform } from 'react-native';
import { IIIntegrationProvider, useIIIntegration } from 'expo-ii-integration';
import { buildAppConnectionURL } from 'expo-icp-app-connect-helpers';
import { getDeepLinkType } from 'expo-icp-frontend-helpers';
import {
  LOCAL_IP_ADDRESS,
  DFX_NETWORK,
  CANISTER_ID_II_INTEGRATION,
  CANISTER_ID_FRONTEND,
} from '@/constants';
import { cryptoModule } from '@/crypto';

function App() {
  const isWeb = Platform.OS === 'web';
  const secureStorage = isWeb
    ? new WebSecureStorage()
    : new NativeSecureStorage();

  const regularStorage = isWeb
    ? new WebRegularStorage()
    : new NativeRegularStorage();

  const deepLink = Linking.createURL('/');
  const iiIntegrationUrl = buildAppConnectionURL({
    dfxNetwork: DFX_NETWORK,
    localIPAddress: LOCAL_IP_ADDRESS,
    targetCanisterId: CANISTER_ID_II_INTEGRATION,
  });
  const deepLinkType = getDeepLinkType({
    deepLink,
    frontendCanisterId: CANISTER_ID_FRONTEND,
    easDeepLinkType: process.env.EXPO_PUBLIC_EAS_DEEP_LINK_TYPE,
  });
  const iiIntegration = useIIIntegration({
    iiIntegrationUrl,
    deepLinkType,
    secureStorage,
    regularStorage,
    cryptoModule,
  });

  return (
    <IIIntegrationProvider value={iiIntegration}>
      {/* Your app components */}
    </IIIntegrationProvider>
  );
}

Using the Authentication Context

import { useIIIntegrationContext } from 'expo-ii-integration';

function AuthButton() {
  const {
    login,
    logout,
    isAuthenticated,
    isAuthReady,
    getIdentity,
    authError,
    clearAuthError,
  } = useIIIntegrationContext();

  if (!isAuthReady) return null;

  return (
    <Button
      onPress={isAuthenticated ? logout : login}
      title={isAuthenticated ? 'Logout' : 'Login with Internet Identity'}
    />
  );
}

API Reference

useIIIntegration Hook

type UseIIIntegrationParams = {
  iiIntegrationUrl: string; // The II integration URL
  deepLinkType: DeepLinkType; // The deep link type ('modern', 'icp', 'dev-server', 'expo-go', 'legacy')
  secureStorage: Storage; // Secure storage for sensitive data
  regularStorage: Storage; // Regular storage for non-sensitive data
  cryptoModule: CryptoModule; // Crypto module for session ID generation
};

type IIIntegrationType = {
  isAuthReady: boolean; // Whether the authentication system is ready
  isAuthenticated: boolean; // Whether the user is authenticated
  getIdentity: () => Promise<Identity | undefined>; // Get the current identity
  login: (loginOuterParams?: LoginOuterParams) => Promise<void>; // Login function
  logout: () => Promise<void>; // Logout function
  authError: unknown | undefined; // Any authentication error
  clearAuthError: () => void; // Clear the authentication error
};

Contributing

Contributions are welcome! Please read our contributing guidelines for details.

License

MIT License