Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@adyen/react-native
Advanced tools
Wrapps Adyen Checkout SDKs for iOS and Android for convinient use on React Native.
React native wrapper for native iOS and Android Adyen Components. This library allows you to accept in-app payments by providing you with the building blocks you need to create a checkout experience.
We strongly encourage you to contribute to our repository. Find out more in our contribution guidelines
Explain the requirements for using the repo (e.g. which minimum iOS version is needed to run the SDK).
Add @adyen/react-native
to your react-native project.
$ yarn add @adyen/react-native
pod install
@import AdyenReactNative;
...
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
return [RedirectComponentProxy proccessURL:url];
}
AdyenDropInService
to manifest:<service android:name="com.adyenreactnativesdk.AdyenDropInService" android:permission="android.permission.BIND_JOB_SERVICE"/>
For general understanding of how prebuilt UI components of Adyen work you can follow our documentation.
Example of configuration properties:
const configuration = {
environment: 'test', // live, live-us, live-au
channel: channel, // iOS, Android. Added automatically by AdyenPaymentProvider
clientKey: '{YOUR_CLIENT_KEY}',
countryCode: 'NL',
amount: { currency: 'EUR', value: 1000 },
reference: 'React Native', // The reference to uniquely identify a payment.
returnUrl: 'myapp://', // This value is overridden for Android DropIn
shopperReference: 'Checkout Shopper', // Your reference to uniquely identify this shopper
merchantAccount: '{YOUR_MERCHANT_ACCOUNT}',
shopperLocale: 'en-US',
additionalData: { allow3DS2: true },
};
To use @adyen/react-native
you can use our helper component AdyenPaymentProvider
.
import {
AdyenPaymentProvider
} from '@adyen/react-native';
<AdyenPaymentProvider
config={configuration}
paymentMethods={paymentMethods}
onSubmit={didSubmit}
onProvide={didProvide}
onFail={didFail}
onComplete={didComplete}
>
<Button
title="Checkout"
onPress={() => start('AdyenDropIn')}
/>
</AdyenPaymentProvider>
Or manage native events by
import {
AdyenDropIn,
PAYMENT_SUBMIT_EVENT,
PAYMENT_PROVIDE_DETAILS_EVENT,
PAYMENT_COMPLETED_EVENT,
PAYMENT_FAILED_EVENT
} from '@adyen/react-native';
<Button
title="Checkout"
onPress={() => {
const eventEmitter = new NativeEventEmitter(AdyenDropIn);
this.didSubmitListener = eventEmitter.addListener(PAYMENT_SUBMIT_EVENT, onSubmit);
this.didProvideListener = eventEmitter.addListener(PAYMENT_PROVIDE_DETAILS_EVENT, onProvide);
this.didCompleteListener = eventEmitter.addListener(PAYMENT_COMPLETED_EVENT, onComplete);
this.didFailListener = eventEmitter.addListener(PAYMENT_FAILED_EVENT, onFail);
AdyenDropIn.open(paymentMethods, configuration);
}}
/>
:construction: Work in progress
If you have a feature request, or spotted a bug or a technical problem, create a GitHub issue. For other questions, contact our support team.
MIT license. For more information, see the LICENSE file.
FAQs
Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native
The npm package @adyen/react-native receives a total of 5,360 weekly downloads. As such, @adyen/react-native popularity was classified as popular.
We found that @adyen/react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.