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-icp-app-connect-helpers

v0.1.5

Published

This project provides helpers for invoking another application from the frontend and receiving result via deep link

Readme

expo-icp-app-connect-helpers

This project provides helpers for invoking another application from the frontend and receiving result via deep link in Internet Computer (ICP) applications.

Installation

npm install expo-icp-app-connect-helpers

Peer Dependencies

This package requires the following peer dependencies:

  • canister-manager
  • expo-icp-frontend-helpers

These dependencies are required for managing Internet Computer canisters and handling deep links in Expo applications. Make sure to install them in your project:

npm install canister-manager expo-icp-frontend-helpers

Usage

Building App Connection URL

import { buildAppConnectionURL } from 'expo-icp-app-connect-helpers';

const url = buildAppConnectionURL({
  dfxNetwork: 'local',
  localIPAddress: '192.168.1.210',
  targetCanisterId: 'rrkah-fqaaa-aaaaa-aaaaq-cai',
  pathname: '/dashboard', // Optional, defaults to '/'
});
// Returns: URL object with pathname '/dashboard'

Building App Connection Parameters

import { buildAppConnectionParams } from 'expo-icp-app-connect-helpers';

const params = buildAppConnectionParams({
  deepLink: 'exp://192.168.1.210:8081',
  frontendCanisterId: 'rrkah-fqaaa-aaaaa-aaaaq-cai',
  easDeepLinkType: undefined,
  pathname: '/dashboard',
});
// Returns: { deepLinkType: 'expo-go', pathname: '/dashboard' }

Building Internet Identity URL

import { buildInternetIdentityURL } from 'expo-icp-app-connect-helpers';

const url = buildInternetIdentityURL({
  dfxNetwork: 'local',
  localIPAddress: '192.168.1.210',
  targetCanisterId: 'rrkah-fqaaa-aaaaa-aaaaq-cai',
  internetIdentityPort: 24943, // Optional
});
// Returns: URL object for Internet Identity

API Reference

buildAppConnectionURL

Builds a URL for connecting to an Internet Computer application.

Parameters

| Parameter | Type | Required | Description | | -------------------- | ------ | -------- | -------------------------------------------------------- | | dfxNetwork | string | Yes | The DFX network to connect to (e.g., 'local', 'ic') | | localIPAddress | string | Yes | The local IP address of the replica | | replicaPort | number | No | Optional port number for the replica | | canisterPort | number | No | Optional port number for the canister | | internetIdentityPort | number | No | Optional port number for Internet Identity | | targetCanisterId | string | Yes | The ID of the target canister to connect to | | pathname | string | No | Optional pathname to append to the URL (defaults to '/') |

Returns

URL - A URL object for connecting to the application

buildAppConnectionParams

Builds connection parameters for deep linking to an Internet Computer application.

Parameters

| Parameter | Type | Required | Description | | ------------------ | ------------------- | -------- | ------------------------------------------- | | deepLink | string | Yes | The deep link URL to be processed | | frontendCanisterId | string | Yes | The ID of the frontend canister | | easDeepLinkType | string | undefined | No | Optional EAS deep link type for Expo builds | | pathname | string | Yes | The pathname to be used in the deep link |

Returns

DeepLinkConnectionParams - The connection parameters with deep link type and pathname

parseDeepLinkConnectionParams

Parses deep link connection parameters from a URL query string.

Parameters

| Parameter | Type | Required | Description | | ------------ | ----------- | -------- | ------------------------------------------------------------ | | paramsStr | string | Yes | The URL query string to parse | | requiredKeys | (keyof P)[] | No | Additional required keys to validate beyond the default ones |

Returns

P - The parsed parameters, where P extends Required

Example

// Parse with default required keys (sessionId, deepLinkType, and pathname)
const params = parseDeepLinkConnectionParams(
  'sessionId=abc123&deepLinkType=expo-go&pathname=/app',
);

// Parse with additional required keys
const params = parseDeepLinkConnectionParams<
  Required<DeepLinkConnectionParams> & { customKey: string }
>(
  'sessionId=abc123&deepLinkType=development&pathname=/app&customKey=value',
  'customKey',
);

buildInternetIdentityURL

Builds a URL for connecting to Internet Identity.

Parameters

| Parameter | Type | Required | Description | | -------------------- | ------ | -------- | --------------------------------------------------- | | dfxNetwork | string | Yes | The DFX network to connect to (e.g., 'local', 'ic') | | localIPAddress | string | Yes | The local IP address of the replica | | replicaPort | number | No | Optional port number for the replica | | canisterPort | number | No | Optional port number for the canister | | internetIdentityPort | number | No | Optional port number for Internet Identity | | targetCanisterId | string | Yes | The ID of the target canister to connect to |

Returns

URL - A URL object for connecting to Internet Identity

Development

# Install dependencies
npm install

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

# Build the package
npm run build

License

ISC