JSPM

  • Created
  • Published
  • Downloads 1674
  • Score
    100M100P100Q123603F
  • License MIT

The official Authsignal React Native library.

Package Exports

  • react-native-authsignal
  • react-native-authsignal/lib/commonjs/index.js
  • react-native-authsignal/lib/module/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-authsignal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Authsignal

Authsignal React Native SDK

Check out our official React Native documentation.

Installation

Install the Authsignal React Native SDK using npm or yarn:

npm install react-native-authsignal

Then link the native iOS dependencies:

npx pod-install ios

Initialization

Initialize the Authsignal client in your code:

import { Authsignal } from 'react-native-authsignal';

const authsignal = new Authsignal({
  tenantId: 'YOUR_TENANT_ID',
  baseUrl: 'YOUR_REGION_BASE_URL',
});

You can find your tenantId in the Authsignal Portal.

You must specify the correct baseUrl for your tenant's region.

Region Base URL
US (Oregon) https://api.authsignal.com/v1
AU (Sydney) https://au.api.authsignal.com/v1
EU (Dublin) https://eu.api.authsignal.com/v1

Usage

Passkeys

For more detailed info on how add passkeys to your app using Authsignal, check out our official passkey documentation for React Native.

Push

To see how to add push authentication to your app using Authsignal, see our official push documentation for React Native.

Examples

Passkeys

You can check out this Github repo to see an example app which implements a sign-in with passkey flow using the Authsignal React Native SDK, Amazon Cognito and AWS SDK.