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

@faceaisdk/react-native-face-sdk

v0.5.0

Published

React Native offline face enrollment, verification, and liveness detection SDK.

Readme

@faceaisdk/react-native-face-sdk

English | 中文


English

React Native offline face enrollment, verification, and liveness detection SDK. Supports iOS and Android. All functions run offline without the need for backend API services.

⚠️ Important: This SDK involves low-level hardware and native algorithms. It must be tested on a physical device; it will not function on an emulator.

Installation

npm install @faceaisdk/react-native-face-sdk

iOS Configuration

  1. Update your ios/Podfile to include the SDK post-install hook:
    require_relative '../node_modules/@faceaisdk/react-native-face-sdk/scripts/faceaisdk_post_install.rb'
    
    post_install do |installer|
      react_native_post_install(installer, config[:reactNativePath], :mac_catalyst_enabled => false)
      faceaisdk_post_install(installer)
    end
  2. cd ios and run pod install (TensorFlowLiteSwift may take a while depending on the network)
    cd ios && pod install
  3. Add the camera permission to your Info.plist:
    <key>NSCameraUsageDescription</key>
    <string>We need access to your camera for face recognition and liveness detection.</string>

Android Configuration

  1. Ensure your project's minSdkVersion is at least 24.
  2. Ensure your project's compileSdkVersion is at least 34.
  3. Add the camera permission to your AndroidManifest.xml:
    <uses-permission android:name="android.permission.CAMERA" />

API Usage

import {
  addFaceBySDKCamera,
  faceVerify,
  livenessVerify,
  getFaceFeature,
  insertFaceFeature,
  addFaceByImage,
  deleteFaceFeature,
} from '@faceaisdk/react-native-face-sdk';

1. Enroll Face by SDK Camera

addFaceBySDKCamera(faceID: string, options?: { mode?: number; showConfirm?: boolean }) => Promise<FaceResult>

2. Face Verification (1:1 + Liveness)

faceVerify(faceID: string, options?: FaceVerifyOptions) => Promise<FaceResult>

3. Liveness Detection

livenessVerify(options?: LivenessVerifyOptions) => Promise<FaceResult>

Data Structures (FaceResult)

| Property | Type | Description | | :--- | :--- | :--- | | code | number | Status code | | message | string | Message | | faceID | string | User identifier | | similarity | number | Similarity score | | liveness | number | Liveness score | | faceFeature| string | 1024-bit face feature string | | faceBase64 | string | Base64 face image |

Use message directly; there is no need to map or branch on code for user-facing text.


中文

FaceAISDK 人脸识别、活体检测 React Native 原生插件,支持 iOS 和 Android 双端;所有功能无需后台 API 服务即可离线运行。

⚠️ 重要提示:本 SDK 涉及底层硬件与原生算法,必须使用真机测试,模拟器无法运行。

安装

npm install @faceaisdk/react-native-face-sdk

iOS 配置

  1. 在您的 ios/Podfile 中接入必要的脚本:
    require_relative '../node_modules/@faceaisdk/react-native-face-sdk/scripts/faceaisdk_post_install.rb'
    
    post_install do |installer|
      react_native_post_install(installer, config[:reactNativePath], :mac_catalyst_enabled => false)
      faceaisdk_post_install(installer)
    end
  2. 进入 ios 目录并安装 Pod 依赖(TensorFlowLiteSwift根据网络状态会需要比较长时间)
    cd ios && pod install
  3. Info.plist 中添加相机权限描述:
    <key>NSCameraUsageDescription</key>
    <string>我们需要访问您的相机进行人脸识别与活体检测</string>

Android 配置

  1. 确保项目的 minSdkVersion 至少为 24
  2. 确保项目的 compileSdkVersion 至少为 34
  3. AndroidManifest.xml 中声明相机权限:
    <uses-permission android:name="android.permission.CAMERA" />

核心方法

1. SDK 相机录入人脸

addFaceBySDKCamera(faceID: string, options?: { mode?: number; showConfirm?: boolean }) => Promise<FaceResult>

2. 人脸比对 + 活体检测

faceVerify(faceID: string, options?: FaceVerifyOptions) => Promise<FaceResult>

3. 纯活体检测

livenessVerify(options?: LivenessVerifyOptions) => Promise<FaceResult>

统一返回结构 (FaceResult)

| 属性 | 类型 | 说明 | | :--- | :--- | :--- | | code | number | 状态码 | | message | string | 提示文本 | | faceID | string | 用户标识 | | similarity | number | 比对相似度 | | liveness | number | 活体检测分值 | | faceFeature| string | 人脸特征值 (1024位) | | faceBase64 | string | 人脸图片 Base64 字符串 |

直接使用 message 即可,无需再根据 code 做文案映射或分支处理。


Support & Feedback

Issues: GitHub Issues
Email: [email protected]