
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
capacitor-fingerprint-auth
Advanced tools
[](https://www.npmjs.com/package/capacitor-fingerprint-auth) [](https://www.npmjs.com/package/capa
npm i capacitor-fingerprint-auth
import { FingerPrintAuth } from 'capacitor-fingerprint-auth';
const auth = new FingerPrintAuth();
const data = await auth.available();
//
const hasFingerPrintOrFaceAuth = data.has;
const touch = data.touch;
const face = data.face;
await auth.verify();
await auth.verifyWithFallback(); //Falls back to password on IOS
Method | Default | Type | Description |
---|---|---|---|
available() | Promise<any> | Checks if the device has fingerprint/touch id / faceid support | |
verify() | Promise<any> | Shows the prompt | |
verifyWithFallback() | Promise<any> | Falls back to passcode IOS |
fingerprintAuth.verify(
{
title: 'Android title', // optional title (used only on Android)
message: 'Scan your finger', // optional (used on both platforms) - for FaceID on iOS see the notes about NSFaceIDUsageDescription
authenticationValidityDuration: 10, // optional (used on Android, default 5)
useCustomAndroidUI: false // set to true to use a different authentication screen (see below)
fallbackTitle: "Enter your PaSsWorD " //The localized title for the fallback button in the dialog presented to the user during authentication.
cancelTitle:"Get me out //The localized title for the cancel button in the dialog presented to the user during authentication"
})
.then(() => console.log("Biometric ID OK"))
.catch(err => console.log(`Biometric ID NOT OK: ${JSON.stringify(err)}`));
iOS 11 added support for Face ID and was first supported by the iPhone X. The developer needs to provide a value for NSFaceIDUsageDescription, otherwise your app may crash.
You can provide this value (the reason for using Face ID) by adding something like this to App/info.plist:
<key>NSFaceIDUsageDescription</key>
<string>For easy authentication with our app.</string>
IOS | Android |
---|---|
Coming Soon | Coming Soon |
FAQs
[](https://www.npmjs.com/package/capacitor-fingerprint-auth) [](https://www.npmjs.com/package/capa
We found that capacitor-fingerprint-auth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.