Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@op-engineering/react-native-prisma
Advanced tools
A Prisma engine adaptation for React Native.
yarn add --exact react-native-prisma react-native-quick-base64 react-native-url-polyfill @prisma/client@5.9.0-integration-react-native.5 @op-engineering/react-native-prisma@0.1.9
npx pod-install
For bare project you will need to modify the building process to run a couple of scripts that take care of bundling the migrations you generate inside the final app bundle.
Go into XCode
→ Build Phases
→ Bundle React Native Code and images
and modify it so that it looks like this:
set -e
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh"
PRISMA_MIGRATIONS="../node_modules/@op-engineering/react-native-prisma/copy-migrations.sh" # Add this
/bin/sh -c "$WITH_ENVIRONMENT $PRISMA_MIGRATIONS $REACT_NATIVE_XCODE" # Add it to the list of running scripts
For Android you need to modify your apps app/Build.gradle
. Add the following at the top of the file.
apply from: "../../node_modules/@op-engineering/react-native-prisma/react-native-prisma.gradle"
For expo this process is automated into prebuild. Modify your app.json
by adding the react-native-prisma plugin.
{
"expo": {
// ... The rest of your expo config
"plugins": ["@op-engineering/react-native-prisma"]
}
}
This packages contains an extension to the prisma client that allows you to use reactive queries. Use at your own convinience and care since it might introduce large re-renders in your app.
import { PrismaClient } from '@prisma/client/rn';
import { reactiveHooksExtension } from 'react-native-prisma';
const baseClient = new PrismaClient();
export const extendedClient = baseClient.$extends(reactiveHooksExtension);
Then in your React component you can use the hook:
import {Text} from 'react-native';
import {extendedClient} from './myDbModule';
export default function App {
// Will automatically re-render the component with new data
const users = extendedClient.user.useFindMany();
return (
<Text>{users}</Text>
)
}
Bare in mind, for the reactive queries to work you have to use the extended client to modify the data:
extendedClient.user.create({ ...userData });
There are several hooks you can use for your reactive queries:
useFindMany();
useFindFirst();
useFindUnique();
It is also possible to use callbacks for this queries in case you are not using hooks, but you still want to get notified when data changes
import { PrismaClient } from '@prisma/client/rn';
import { reactiveQueriesExtension } from 'react-native-prisma';
const baseClient = new PrismaClient();
export const extendedClient = baseClient.$extends(reactiveQueriesExtension);
FAQs
Prisma for react-native
The npm package @op-engineering/react-native-prisma receives a total of 57 weekly downloads. As such, @op-engineering/react-native-prisma popularity was classified as not popular.
We found that @op-engineering/react-native-prisma demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.