New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

friendpay-sdk

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

friendpay-sdk

FriendPay sdk

latest
npmnpm
Version
1.0.38
Version published
Maintainers
1
Created
Source

FriendPay Stripe SDK

Integrate Stripe payments with one line of code.

📦 Installation

npm install friendpay-stripe-sdk

⚛️ Usage (React)

npm install friendpay-stripe-sdk
// App.jsx
import React, { useEffect } from 'react';
import { renderFriendPayButton } from 'friendpay-stripe-sdk';

const App = () => {
  useEffect(() => {
    renderFriendPayButton({
      key: 'sdk_xxx',
      amount: 999,
      currency: 'INR',
      container: '#react-btn',
      customer: { name: 'React User', email: 'react@example.com' }
    });
  }, []);

  return <div id="react-btn"></div>;
};

export default App;

FAQs

Package last updated on 03 Nov 2025

Did you know?

Socket

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.

Install

Related posts