Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nfcpassportreader

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nfcpassportreader

Read passport using NFC

  • 1.0.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
7
Maintainers
1
Weekly downloads
 
Created
Source

NFC Passport Reader

Adapted from react-native-passport-reader. Individual modifications are too many to enumerate, but essentially: the workflow code was adapted to the needs of a React Native module, and the scanning code was largely left as is.

Getting started

$ npm i nfcpassportreader --save
$ react-native link nfcpassportreader

In your android/app/build.gradle add packagingOptions:

android {
    ...
    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
    }
}

In AndroidManifest.xml add:

<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.nfc" android:required="false" />

If your app will not function without nfc capabilities, set android:required above to true

Usage

import PassportReader from 'nfcpassportreader'

const [passportData, setPassportData] = useState(null);

const scanPassport = async () => {
  const { firstName, lastName, gender, issuer, nationality, photo } = await PassportReader.scan({
    documentNumber: 'ofDocumentBeingScanned',
    dateOfBirth: 'yyMMdd',
    dateOfExpiry: 'yyMMdd'
  })

  setPassportData({
    firstName,
    lastName,
    gender,
    issuer,
    nationality,
    photo
  })
}

// Example on how to display it
return (
  <View style={styles.container}>
    <Text>Passport data:</Text>
    <Text>{passportData.firstName}</Text>
    <Text>{passportData.lastName}</Text>
    <Text>{passportData.gender}</Text>
    <Text>{passportData.issuer}</Text>
    <Text>{passportData.nationality}</Text>
    <Image 
      source={{ uri: passportData.photo.base64 }}
      style={{ width: 150, height: 250 }}
    />
  </View>
);

To-do

  1. Scan MRZ
  2. Fallback for NFC Scanning – Image taking

Keywords

FAQs

Package last updated on 02 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc