
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@evervault/react-native
Advanced tools
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.
Before starting with the Evervault React Native SDK, you will need to create an account and a team.
See the Evervault React Native SDK documentation.
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
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>
);
}
Bug reports and pull requests are welcome on GitHub at https://github.com/evervault/js.
Questions or feedback? Let us know.
FAQs
Evervault SDK for React Native
We found that @evervault/react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.