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

@kwicai/app-bridge

v1.0.4

Published

The **Child SDK** for the Bridge architecture. This package enables a micro-frontend (Child) to communicate securely with its container (Host) via `postMessage`.

Readme

@kwicai/app-bridge

The Child SDK for the Bridge architecture. This package enables a micro-frontend (Child) to communicate securely with its container (Host) via postMessage.

It supports both Web (iFrames) and React Native (WebView) environments automatically.

Installation

npm install @kwicai/app-bridge

Usage (React)

The easiest way to use the SDK is via the provided React Context.

1. Wrap your App

Wrap your application root (or the part that needs bridge access) with BridgeProvider. This handles the initial handshake automatically.

import { BridgeProvider } from '@kwicai/app-bridge'

function App() {
  return (
    <BridgeProvider>
      <YourAppContent />
    </BridgeProvider>
  )
}

2. Use the Hook

Use useBridge() to access the bridge instance and state.

import { useBridge } from '@kwicai/app-bridge'
import { useEffect } from 'react'

function UserProfile() {
  const { bridge, isReady, authToken } = useBridge()

  // Example: Request navigation in the Host app
  const goHome = () => bridge.navigate('/')

  return (
    <div>
      <p>Connection: {isReady ? 'Active' : 'Connecting...'}</p>
      <button onClick={goHome}>Exit to Host Home</button>
    </div>
  )
}

Usage (Vanilla JS)

If you are not using React, or need to use the bridge outside of components:

import { bridge } from '@kwicai/app-bridge'

async function init() {
  try {
    const token = await bridge.handshake()
    console.log('Bridge ready, token:', token)
  } catch (err) {
    console.error('Handshake failed', err)
  }
}

init()

API Reference

Core

  • handshake(): Promise - Initiates connection with Host. Returns auth token.
  • getAuthToken(): string | null - Returns current token if set.

Navigation & UI

  • navigate(path: string): Request Host to change its route (and effectively the URL bar).
  • showModal(config): Open a modal in the Host app.
    bridge.showModal({ id: 'my-modal', title: 'Edit Profile', content: { ... } })
  • setOverlay(active: boolean): Request Host to show/hide a full-screen overlay (e.g., for loading).
  • setFullscreen(active: boolean): Request Host to enter/exit fullscreen mode for the child view.

Features

  • requestMedia(config): Request user to pick media (Image/Video) from Host's native picker.
    const media = await bridge.requestMedia({ type: 'image' })
    if (media) console.log(media[0].url)

Events

Listen to events coming from the Host:

// Route changes in Host
bridge.onNavigation((path) => {
  console.log('Host navigated to:', path)
})

// Modal actions (e.g. user clicked "Confirm" in Host modal)
bridge.onModalAction((id, action, payload) => {
  if (id === 'my-modal' && action === 'CONFIRM') {
    saveData()
  }
})