New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

@easylabs/react-native

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@easylabs/react-native

Easy Labs SDK for React Native

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
2
-83.33%
Maintainers
1
Weekly downloads
 
Created
Source

Easy React Native SDK

The Easy React Native SDK provides a simple, type-safe, and PCI/PII-compliant way to integrate Easy's payment and customer management platform into your React Native applications.

📚 View Full Documentation & Examples →

Features

  • Create and manage customers
  • Tokenize and create payment instruments (cards, bank accounts)
  • Initiate transfers and payments
  • Anonymous checkout flows
  • TypeScript-first API
  • PCI/PII compliant: secure form elements protect sensitive data
  • Flexible: use existing payment instrument or create new

Installation

pnpm add @easylabs/react-native
# or
npm install @easylabs/react-native
# or
yarn add @easylabs/react-native

Usage Example

import { EasyProvider, useEasy } from "@easylabs/react-native";

function App() {
  return (
    <EasyProvider apiKey={process.env.EXPO_PUBLIC_EASY_API_KEY!}>
      <MyCheckoutComponent />
    </EasyProvider>
  );
}

Note: For React Native projects using Expo, use process.env.EXPO_PUBLIC_EASY_API_KEY. For standard React Native, configure your environment variables according to your build setup (e.g., using react-native-config or react-native-dotenv).

API Reference

EasyProvider

Wrap your app with EasyProvider and provide your Easy API key.

useEasy()

Access all SDK methods via the context:

TypeScript Support

All types are exported for maximum type safety and autocompletion.

PCI/PII Compliance

Built with secure form elements for PCI-compliant payment data collection. Your application never touches sensitive payment information.

Contributing & Support

For issues, questions, or contributions, please open an issue or pull request on GitHub.

Keywords

easy-labs

FAQs

Package last updated on 27 Aug 2026

Related posts