SQLite with SQLCipher encryption support for React Native
npm install react-native-sqlite-sqlcipher
import SQLite from "react-native-sqlite-sqlcipher";
// ...
const db = await SQLite.openDatabase({ name: DB_NAME, key: DB_PASSWORD, location: 'default' });
MIT