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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ganeyip

v0.0.1

Published

Le paquet react-native ganeyi vous permet de tirer profit des solutions OCR et MRZ développées par Baamtu S.A.R.L à partir de votre application react-native. Ce paquet se base sur le component Ganeyi qui offre un UI customisable pour les besoins suivant:<

Downloads

4

Readme

Description

Le paquet react-native ganeyi vous permet de tirer profit des solutions OCR et MRZ développées par Baamtu S.A.R.L à partir de votre application react-native. Ce paquet se base sur le component Ganeyi qui offre un UI customisable pour les besoins suivant:

  • Extraction d'informations des pièces d'identité
  • Extraction d'informations des factures
  • Vérification d'identité

Clé

L'utilisation du paquet necessite une clé d'api fournit après souscription à l'un des produits proposés par Ganeyi.

Installation

  1. Installer le package
npm install ganeyi-react-native
  1. Importer le paquet et utiliser le dans votre projet React Native
import Ganeyi from "ganeyi-react-native";

Packages installation and configuration


  • react-native-vector-icons
npm i react-native-vector-icons

follow the link for package configuration

package configuration guide

for android, simply add the following line in android/app/build.gradle

apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
  • react-native-image-crop-picker
npm i react-native-image-crop-picker

follow the link for package configuration package configuration guide

  • react-native-svg
npm i react-native-svg

follow the link for package configuration

package configuration guide

  • react-pdf
npm i react-pdf --force

follow the link for package configuration

package configuration guide

  • react-native-navigation
npm install @react-navigation/native @react-navigation/native-stack

follow the link for package configuration

package configuration guide

  • react-native-fetch-blob
npm install react-native-fetch-blob

follow the link for package configuration

package configuration guide

-- in node_modules find react-native-fetch-blob. go to node_modules/react-nativ-fetch-blob/android/build.gradle at line 36 and change "compile" to "implementation"

Documentation

Ce SDK vous permet à partir d'une instance Ganeyi de composer des workflow pour tirer profit des différentes solutions offertes par Baamtu S.A.R.L.

Extraction des informations

Paramètres requis

  • token: Votre clé d'api

Paramètres requis

  • component: Produit auquel vous avez souscrit

Valeurs possibles du paramétre component

  • OCR Permet de spécifier que l'on souhaite utiliser le produit OCR pour l'extraction d'information au niveau des documents suivants :
    • Facture Senelec
    • Facture Seneau
    • Facture Sonatel
    • Piéce d'identité (partie recto)

Les paramètres suivants ne sont à renseigner qu'en cas de changement au niveau des produits | Paramètre | Description | Type | |------------------------|-------------------------------------------------------------------------------------------------------------|-----------------------| | product | Nom du produit | String | | version | Version du produit | String |

Exemple Dans votre fichier d'entré (App.js ou index.js) :

const App= ()=> {

  return (

     <Ganeyi
      Component= 'OCR'
      token = 'CLE_API'
     />
  )

}
  • MRZ Permet de spécifier que l'on souhaite utiliser le produit MRZ pour l'extraction d'information au niveau des documents suivants :
    • Piéces d'identité (Partie verso)
    • Passport
    • Permis de conduire

Les paramètres suivants ne sont à renseigner qu'en cas de changement au niveau des produits | Paramètre | Description | Type | |------------------------|-------------------------------------------------------------------------------------------------------------|-----------------------| | product | Nom du produit | String | | version | Version du produit | String

Exemple Dans votre fichier d'entré (App.js ou index.js) :

const App= ()=> {

  return (

     <Ganeyi
      Component= 'MRZ'
      token = 'CLE_API'
     />
  )

}

Verification d'Identité

Paramètres requis

  • component: Nom du produit

Valeurs possibles du paramétre component

  • Id Verification Permet de spécifier que l'on souhaite intégrer la fonctionnalité de verification d'identité pour tout type de document

Exemple Dans votre fichier d'entré (App.js ou index.js) :

const App= ()=> {

  return (

     <Ganeyi
      Component= 'Id Verification'
     />
  )

}

Screenshots

Extraction des informations des pièces d'identité

Extraction des informations des factures

Vérification d'identité