
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
capacitor-face-id
Advanced tools
Allow users to authenticate with Face ID or Touch ID on iOS devices

npm install capacitor-face-id
iOS requires the following usage description be added and filled out for your app in Info.plist:
Name: Privacy - Face ID Usage Description
Key: NSFaceIDUsageDescription
import { Plugins, PluginResultError } from '@capacitor/core';
const { FaceId } = Plugins;
...
// check if device supports Face ID or Touch ID
FaceId.isAvailable().then(checkResult => {
if(checkResult.value) {
FaceId.auth().then(() => {
console.log('authenticated');
}).catch((error: PluginResultError) => {
// handle rejection errors
console.error(error.message);
});
} else {
// use custom fallback authentication here
}
});
| Method | Default | Type | Description |
|---|---|---|---|
| isAvailable() | Promise<{ value: string }> | Checks if Face ID or Touch ID is available, and returns type if so. | |
| auth(options?: {reason?: string}) | options: {reason: "Access requires authentication"} | Promise<void> | Displays the Face ID or Touch ID screen |
FAQs
Allow users to authenticate with Face ID or Touch ID on iOS devices
We found that capacitor-face-id 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.