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

@datakorinews/identity-sdk

v0.0.2

Published

SDK de vérification d'identité pour React Native - Optimisé pour l'Afrique

Readme

Koritrust Identity SDK

Koritrust Identity SDK est une solution complète de vérification d’identité (KYC) pour React Native.
Ce SDK fournit une expérience fluide et intégrée permettant de collecter toutes les informations nécessaires à la vérification d’identité :

  • Formulaire d’informations personnelles
  • Enregistrement audio de l’adresse
  • Capture des documents d’identité (recto/verso)
  • Selfie de l’utilisateur

Le SDK est compatible iOS et Android.

Prérequis de développement

Pour exécuter ce projet localement, les versions minimales suivantes sont requises :

  • Node.js ≥ 16.0.0
  • npm ≥ 8.0.0
  • React ≥ 18
  • React Native ≥ 0.73

Dépendances requises

Avant d’utiliser le SDK, installez les dépendances suivantes dans votre projet :

npm install @react-native-community/datetimepicker
npm install react-native-vector-icons
npm install @react-native-picker/picker
npm install react-native-fs
npm install react-native-image-picker
npm install react-native-permissions
npm install react-native-svg
npm install react-native-vision-camera
npm install react-native-nitro-sound

Installation du SDK

npm install @datakorinew/identity-sdk

Utilisation rapide

import { KoritrustIdentitySDK } from "@datkorinew/identity-sdk";

function App() {
  const handleComplete = (data) => {
    console.log("Vérification terminée:", data);
  };

  return <KoritrustIdentitySDK onComplete={handleComplete} />;
}

Android

Ajoutez les permissions nécessaires dans le fichier android/app/src/main/AndroidManifest.xml :

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

iOS

cd ios
pod install
cd ..

Ajoutez les autorisations suivantes dans Info.plist :

<key>NSCameraUsageDescription</key>
<string>Pour scanner vos documents d'identité</string>
<key>NSCameraUsageDescription</key>
<string>Nous avons besoin d'accéder à votre caméra</string>
<key>NSMicrophoneUsageDescription</key>
<string>Nous avons besoin d'accéder à votre microphone</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Nous avons besoin d'accéder à vos photos</string>

Compilation et exécution

Tout d'abord, vous devez lancer Metro, qui est l'outil de build JavaScript pour React Native. Pour démarrer le serveur de développement Metro, exécutez la commande suivante depuis la racine de votre projet React Native :

npm start

Exécution sur les appareils

Pendant que Metro est en cours d'exécution, ouvrez une nouvelle fenêtre/onglet de terminal depuis la racine de votre projet React Native, et utilisez l'une des commandes suivantes pour compiler et lancer votre application Android ou iOS :

npx react-native run-android  # Pour Android
npx react-native run-ios  # Pour iOS

Fonctionnalités

  • [x] Vérification de documents d'identité
  • [x] Détection de liveness (preuve de vie)
  • [x] OCR des documents
  • [x] Validation biométrique

Licence

MIT

Changelog

[0.0.1] → [0.0.2] - 2025-10-28

Changed

  • Update de react-native-audio-recorder-player vers react-native-nitro-sound
  • Amélioration de la compatibilité et des performances sous Android
  • Correction d'erreurs de compilation sous Android
  • Mise à jour de react-native-vector-icons vers la version ^10.2.0 pour résoudre l'avertissement de dépréciation
  • inflight^2.0.0 (résout l'avertissement de fuite de mémoire)
  • rimraf^5.0.0 (résout l'avertissement de dépréciation)
  • glob^10.0.0 (résout l'avertissement de dépréciation)