🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@evervault/react-native

Package Overview
Dependencies
Maintainers
5
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evervault/react-native

Evervault SDK for React Native

latest
Source
npmnpm
Version
2.6.0
Version published
Maintainers
5
Created
Source

Evervault

Evervault React Native SDK

The Evervault React Native SDK is a toolkit for encrypting data on the client. Using the Evervault React Native SDK means your customer's data never leaves their device unencrypted.

Getting Started

Before starting with the Evervault React Native SDK, you will need to create an account and a team.

Documentation

See the Evervault React Native SDK documentation.

Installation

Our React Native SDK is distributed via npm, and can be installed using your preferred package manager.

# Using npm
npm install @evervault/react-native

# Using yarn
yarn add @evervault/react-native

# Using pnpm
pnpm add @evervault/react-native

Usage

Once installed, initialize the React Native SDK with your Team and App ID found in the Evervault Dashboard.

Use the <EvervaultProvider> component as a provider for your app.

import { EvervaultProvider, Card, type CardPayload } from "@evervault/evervault-react-native";

function App() {
  const [data, setData] = useState<CardPayload | null>(null);

  return (
    <EvervaultProvider teamId="team_xxx" appId="app_xxx">
      <Card onChange={setData}>
        <Card.Holder />
        <Card.Number />
        <Card.Expiry />
        <Card.CVC />
      </Card>
    </EvervaultProvider>
  );
}

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/evervault/js.

Feedback

Questions or feedback? Let us know.

FAQs

Package last updated on 31 Oct 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