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

@surtai/faceguard-rn

v0.1.2

Published

Official React Native SDK for FaceGuard, face verification for secure login

Readme

@surtai/faceguard-rn

Official React Native SDK for FaceGuard — biometric face verification embedded in your app via a secure WebView.

Installation

npm install @surtai/faceguard-rn react-native-webview

iOS

cd ios && pod install

Add to Info.plist:

<key>NSCameraUsageDescription</key>
<string>Required for face verification</string>

Android

Add to AndroidManifest.xml:

<uses-permission android:name="android.permission.CAMERA" />

Setup

Wrap your app root with FaceGuardProvider:

import { FaceGuardProvider } from '@surtai/faceguard-rn';

export default function App() {
  return (
    <FaceGuardProvider>
      {/* rest of your app */}
    </FaceGuardProvider>
  );
}

Usage

Promise-based (simplest)

import { FaceGuard } from '@surtai/faceguard-rn';

const result = await FaceGuard.verify({ token: 'PORTAL_TOKEN' });

switch (result.status) {
  case 'approved':
    console.log('Verified', result.confidence);
    break;
  case 'rejected':
    console.log('Failed', result.confidence);
    break;
  case 'canceled':
    console.log('User canceled');
    break;
  case 'error':
    console.log('Error', result.error);
    break;
}

Callback-based

const session = FaceGuard.init({
  token: 'PORTAL_TOKEN',
  onSuccess: (r) => console.log('approved', r.confidence),
  onFailed:  (r) => console.log('rejected', r.confidence),
  onCancel:  ()  => console.log('canceled'),
  onError:   (e) => console.log('error', e.message),
});

// Close programmatically if needed:
session.destroy();

Declarative component

Render the verification UI inside your own container or modal:

import { FaceGuardView } from '@surtai/faceguard-rn';
import { Modal } from 'react-native';

<Modal visible={isOpen} onRequestClose={() => setIsOpen(false)}>
  <FaceGuardView
    token="PORTAL_TOKEN"
    style={{ flex: 1 }}
    onSuccess={() => setIsOpen(false)}
    onCancel={() => setIsOpen(false)}
  />
</Modal>

Options

| Prop | Type | Required | Description | |------|------|:--------:|-------------| | token | string | ✓ | Portal JWT token issued by your backend | | baseUrl | string | | Override the verification endpoint (default: https://faceguard.surt.com) | | lang | string | | UI language: en, es, pt, de | | onReady | () => void | | Fired when the WebView finishes loading | | onSuccess | (r: { confidence: number }) => void | | Face matched successfully | | onFailed | (r: { confidence: number }) => void | | Face did not match | | onCancel | () => void | | User dismissed the flow | | onError | (e: { message: string }) => void | | Verification error |


Peer Dependencies

| Package | Version | |---------|---------| | react | >= 18 | | react-native | >= 0.73 | | react-native-webview | >= 11 |


Notes

  • One session at a time — concurrent init() calls are queued; only one modal displays at a time.
  • One-shot per token — the backend closes the session after the first attempt. If the user fails, your backend must issue a new portal token for a retry.
  • Custom environments — pass baseUrl to target staging or local dev (e.g. an ngrok tunnel).

License

Apache-2.0