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

react-native-local-auth

v1.7.0

Published

React Native local authentication with touch id or passcode

Downloads

1,336

Readme

react-native-local-auth

Authenticate users with Touch ID, with optional fallback to passcode (if TouchID is unavailable or not enrolled). Most of the code and documentation is originally from react-native-touch-id, but together with naoufal we decided that fallback to passcode didn't belong in react-native-touch-id.

Documentation

UI

If TouchID is supported and enrolled (in this gif, 1st touch fails, 2nd succeeds)

Touch ID

If TouchID is not supported or not enrolled, you can fallback to device passcode

fallback to passcode

Install

npm i --save react-native-local-auth

Linking the Library

First link the library to your project. There's excellent documentation on how to do this in the React Native Docs.

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import io.tradle.reactlocalauth.LocalAuthPackage; to the imports at the top of the file
  • Add new LocalAuthPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-local-auth'
    project(':react-native-local-auth').projectDir = new File(rootProject.projectDir,   '../node_modules/react-native-local-auth/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-local-auth')

Usage

var LocalAuth = require('react-native-local-auth')

var YourComponent = React.createClass({
  _pressHandler() {
    LocalAuth.authenticate({
        reason: 'this is a secure area, please authenticate yourself',
        fallbackToPasscode: true,    // fallback to passcode on cancel
        suppressEnterPassword: true // disallow Enter Password fallback
      })
      .then(success => {
        AlertIOS.alert('Authenticated Successfully')
      })
      .catch(error => {
        AlertIOS.alert('Authentication Failed', error.message)
      })
  },

  render() {
    return (
      <View>
        ...
        <TouchableHighlight onPress={this._pressHandler}>
          <Text>
            Authenticate with Touch ID / Passcode
          </Text>
        </TouchableHighlight>
      </View>
    )
  }
})

hasTouchID()

check if Touch ID is supported. Returns a Promise object.

Errors

There are various reasons why authenticating with Touch ID or device passcode may fail. Whenever authentication fails, LocalAuth.authenticate will return an error code representing the reason.

Below is a list of error codes that can be returned:

| Code | Description | |---|---| | LAErrorAuthenticationFailed | Authentication was not successful because the user failed to provide valid credentials. | | LAErrorUserCancel | Authentication was canceled by the user—for example, the user tapped Cancel in the dialog. | | LAErrorUserFallback | Authentication was canceled because the user tapped the fallback button (Enter Password). | | LAErrorSystemCancel | Authentication was canceled by system—for example, if another application came to foreground while the authentication dialog was up. | | LAErrorPasscodeNotSet | Authentication could not start because the passcode is not set on the device. | | LAErrorTouchIDNotAvailable | Authentication could not start because Touch ID is not available on the device | | LAErrorTouchIDNotEnrolled | Authentication could not start because Touch ID has no enrolled fingers. | | RCTTouchIDUnknownError | Could not authenticate for an unknown reason. | | RCTTouchIDNotSupported | Device does not support Touch ID. |

More information on errors can be found in Apple's Documentation.

License

ISC. react-native-touch-id license also included.