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

@quiltt/react-native

v5.0.2

Published

React Native Components for Quiltt Connector

Readme

@quiltt/react-native

npm version CI

@quiltt/react-native provides React Native Components for integrating Quiltt Connector into React Native and Expo applications.

For general project information and contributing guidelines, see the main repository README.

Installation

@quiltt/react-native expects react, react-native, react-native-webview, base-64 and react-native-url-polyfill as peer dependencies.

With npm:

npm install base-64 react-native-webview react-native-url-polyfill
npm install @quiltt/react-native

With yarn:

yarn add base-64 react-native-webview react-native-url-polyfill
yarn add @quiltt/react-native

With pnpm:

# Make sure to add `node-linker=hoisted` to your `.npmrc` when using pnpm in an Expo app.
$ pnpm add base-64 react-native-webview react-native-url-polyfill
$ pnpm add @quiltt/react-native

Documentation

For full SDK documentation and more code examples, see the Connector React Native guide.

QuilttConnector

Launch the Quiltt Connector in a webview.

@quiltt/react-native does not ship with a navigation library, so you might want to navigate to a new "page" when using QuilttConnector.

For better tree-shaking, you can import components from subpaths:

import { QuilttConnector } from '@quiltt/react-native/components'

Example

import { QuilttProvider } from '@quiltt/react'
import { QuilttConnector } from '@quiltt/react-native'
import type { ConnectorSDKCallbackMetadata } from '@quiltt/react'

export const App = () => {
  // See: https://www.quiltt.dev/authentication/issuing-session-tokens
  const sessionToken = '<TOKEN_OBTAINED_FROM_THE_SERVER>'

  // Use a universal link or deep link to redirect back to your app
  const oauthRedirectUrl = 'https://myapp.com/my_universal_link'

  const handleExitSuccess = (metadata: ConnectorSDKCallbackMetadata) => {
    console.log('Successfully created connection!', {
      connectionId: metadata.connectionId,
    })
  }

  return (
    <QuilttProvider token={sessionToken}>
      <QuilttConnector
        connectorId="<CONNECTOR_ID>"
        oauthRedirectUrl={oauthRedirectUrl}

        // See the JavaScript API docs for the full list of available callbacks...
        onExitSuccess={handleExitSuccess}
      />
    </QuilttProvider>
  )
}

export default App

Handling OAuth Deep Links

When users authenticate with financial institutions, they'll be redirected back to your app via a deep link. You need to listen for these deep links and pass them to the QuilttConnector to complete the OAuth flow.

Platform Note: This deep link handling is primarily needed for Android, where OAuth flows typically open in an external browser. On iOS, the OAuth flow usually stays within the app's web view, so this fallback mechanism may not be necessary. However, implementing it ensures consistent behavior across both platforms.

Example with Deep Link Handling

import { useEffect, useRef } from 'react'
import { Linking, View } from 'react-native'
import { QuilttProvider } from '@quiltt/react'
import { QuilttConnector } from '@quiltt/react-native'
import type { ConnectorSDKCallbackMetadata, QuilttConnectorHandle } from '@quiltt/react-native'

export const ConnectorScreen = () => {
  const connectorRef = useRef<QuilttConnectorHandle>(null)
  
  const sessionToken = '<TOKEN_OBTAINED_FROM_THE_SERVER>'
  const oauthRedirectUrl = 'https://myapp.com/quiltt/callback'

  // Listen for deep links and handle OAuth callbacks
  useEffect(() => {
    const subscription = Linking.addEventListener('url', (event) => {
      console.log('Deep link received:', event.url)
      
      // Check if this is an OAuth callback for Quiltt
      if (event.url.includes('quiltt-connect/callback') || event.url.includes('quiltt/callback')) {
        console.log('Processing Quiltt OAuth callback')
        connectorRef.current?.handleOAuthCallback(event.url)
      }
    })

    return () => subscription.remove()
  }, [])

  const handleExitSuccess = (metadata: ConnectorSDKCallbackMetadata) => {
    console.log('Successfully created connection!', {
      connectionId: metadata.connectionId,
    })
  }

  return (
    <QuilttProvider token={sessionToken}>
      <View style={{ flex: 1 }}>
        <QuilttConnector
          ref={connectorRef}
          connectorId="<CONNECTOR_ID>"
          oauthRedirectUrl={oauthRedirectUrl}
          onExitSuccess={handleExitSuccess}
        />
      </View>
    </QuilttProvider>
  )
}

export default ConnectorScreen

Important Notes:

  • The ref prop is required when handling OAuth callbacks
  • The deep link URL pattern should match your oauthRedirectUrl configuration
  • Make sure your app is properly configured to handle deep links (see React Native Linking documentation)

Typescript support

@quiltt/react-native is written in Typescript and ships with its own type definitions, as well as the type definitions from @quiltt/core.

License

This project is licensed under the terms of the MIT license. See the LICENSE file for more information.

Contributing

For information on how to contribute to this project, please refer to the repository contributing guidelines.

Related Packages