npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-native-monnify

v1.0.1

Published

Expo-friendly Monnify Web SDK wrapper for React Native

Readme

react-native-monnify

npm version License Expo Compatible

An Expo-friendly React Native wrapper for the Monnify Web SDK. Easily integrate Monnify payments via WebView in Expo-managed and bare React Native apps.


⚡ Features

  • ✅ Works with Expo managed workflow and bare React Native apps
  • ✅ WebView-based integration for sandbox and live payments
  • ✅ Fully typed with TypeScript
  • ✅ Handles success, error, and dismiss events
  • ✅ Minimal setup; no extra build tooling required

📦 Installation

# Install peer dependencies first
expo install react-native-webview

# Install the package (npm or yarn)
npm install react-native-monnify
# or
yarn add react-native-monnify

📝 Basic Usage

import React, { useState } from "react";
import { View, Pressable, Text, StyleSheet } from "react-native";
import { useRouter } from "expo-router";
import Monnify, { MonnifyPaymentParams } from "react-native-monnify";

export default function HomeScreen() {
  const router = useRouter();
  const [modalVisible, setModalVisible] = useState(false);

  const paymentParameters: MonnifyPaymentParams = {
    amount: 100,
    currency: "NGN",
    reference: `${new Date().getTime()}`,
    customerFullName: "John Doe",
    customerEmail: "[email protected]",
    customerMobileNumber: "08012345689",
    apiKey: "MK_PROD_V5EJMMX2FM",
    contractCode: "100693167467",
    paymentDescription: "Payment for goods from RN package",
    mode: "LIVE",
  };

  const onSuccess = (response: any) => {
    console.log("Payment Successful:", response);
    router.push("/success");
  };

  const onError = (response: any) => {
    console.log("Payment Failed:", response);
    router.push("/error");
  };

  const onDismiss = () => {
    setModalVisible(false);
  };

  return (
    <View style={styles.container}>
      <Monnify
        visible={modalVisible}
        paymentParams={paymentParameters}
        onSuccess={onSuccess}
        onError={onError}
        onDismiss={onDismiss}
      />
      <Pressable
        style={[styles.button, styles.buttonOpen]}
        onPress={() => setModalVisible(true)}
      >
        <Text style={styles.textStyle}>Pay with Monnify</Text>
      </Pressable>
    </View>
  );
}

const styles = StyleSheet.create({
  container: { flex: 1, justifyContent: "center", alignItems: "center" },
  button: { borderRadius: 20, padding: 10, elevation: 2 },
  buttonOpen: { backgroundColor: "#F194FF" },
  textStyle: { color: "white", fontWeight: "bold", textAlign: "center" },
});

📝 Split Payment Example

const paymentParameters: MonnifyPaymentParams = {
  amount: 5000,
  currency: "NGN",
  reference: `${new Date().getTime()}`,
  customerFullName: "John Doe",
  customerEmail: "[email protected]",
  customerMobileNumber: "08012345678",
  apiKey: "MK_TEST_P2HGJFA4",
  contractCode: "3520752572",
  paymentDescription: "Payment for goods",
  mode: "TEST",
  metadata: { name: "Damilare", age: 45 },
  incomeSplitConfig: [
    {
      subAccountCode: "MFY_SUB_342113621921",
      feePercentage: 50,
      splitAmount: 1900,
      feeBearer: true,
    },
    {
      subAccountCode: "MFY_SUB_342113621922",
      feePercentage: 50,
      splitAmount: 2100,
      feeBearer: true,
    },
  ],
};

⚙️ Props

Component Props

| Prop | Type | Required | Description | | ------------- | ----------------------- | -------- | ----------------------------------------------------- | | visible | boolean | Yes | Show or hide the payment modal | | paymentParams | MonnifyPaymentParams | Yes | Payment configuration (see PaymentParams table below) | | onSuccess | (response: any) => void | No | Callback when payment succeeds | | onError | (error: any) => void | No | Callback when payment fails | | onDismiss | () => void | No | Callback when modal is dismissed |

PaymentParams Properties

| Prop | Type | Required | Description | | ------------------ | ------------------- | -------- | --------------------------------------------------------------- | | amount | number | Yes | The amount to be paid | | currency | string | Yes | The currency in which payment will be made (e.g., "NGN") | | reference | string | Yes | A unique reference for the payment transaction | | customerFullName | string | Yes | The full name of the customer making the payment | | customerEmail | string | Yes | The email address of the customer making the payment | | apiKey | string | Yes | The API key provided by Monnify | | contractCode | string | Yes | The contract code provided by Monnify | | paymentDescription | string | Yes | A description of the payment | | mode | string | Yes | Environment mode: "TEST" for development, "LIVE" for production | | metadata | Record<string, any> | No | Additional metadata to be sent with the payment | | incomeSplitConfig | Array | No | Configuration for splitting the payment into sub-accounts |


⚡ Notes

  • Only public API key should be used in the client. Keep secret keys on your server.
  • Generate a unique reference for every payment attempt.
  • For production, set mode: "LIVE" and handle redirect URLs properly.
  • Works in both sandbox (TEST) and live (LIVE) modes.
  • Split payments supported via incomeSplitConfig.

🛠 Development

# Clone the repo
git clone https://github.com/chidubemthedev/react-native-monnify.git
cd react-native-monnify

# Install dependencies
npm install

# Build the package
npm run build

# Link or test locally in an Expo project
npm pack

🤝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/my-feature)
  3. Commit your changes (git commit -am 'Add new feature')
  4. Push to the branch (git push origin feature/my-feature)
  5. Open a Pull Request

📖 License

MIT License © Chidubem Agulue