🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

@basis-theory/react-native-threeds

Package Overview
Dependencies
Maintainers
10
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@basis-theory/react-native-threeds

Basis Theory 3DS React Native SDK

latest
Source
npmnpm
Version
1.1.2
Version published
Maintainers
10
Created
Source

3DS React Native SDK

Version

The Basis Theory 3DS React Native SDK.

Installation

Using Node Package Manager

npm install @basis-theory/react-native-threeds

Using Yarn

yarn add @basis-theory/react-native-threeds

Usage

To use the React Native SDK methods, you need to wrap your app with the BasisTheory3dsProvider component. This component will provide the SDK methods to the rest of your app.

import { BasisTheoryProvider } from '@basis-theory/react-native-threeds';

const App = () => {
  return (
    <BasisTheoryProvider>
      <YourApp />
    </BasisTheoryProvider>
  );
};

After that, you can access the SDK methods using the useBasisTheory3ds hook.

import { BasisTheory3dsProvider, useBasisTheory3ds } from '@basis-theory/react-native-threeds';

const App = () => {
  const { createSession, startChallenge } = useBasisTheory3ds();

  return (
    <BasisTheoryProvider>
      <YourApp />
    </BasisTheoryProvider>
  );
};

Documentation

For a complete list of endpoints and examples, please refer to our official documentation

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

FAQs

Package last updated on 11 Nov 2025

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