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 🙏

© 2026 – Pkg Stats / Ryan Hefner

multivendor-razorpay

v0.0.1

Published

Framework-agnostic Razorpay SDK wrapper for orders, payments, webhooks, and refunds

Readme

multivendor-razorpay

Framework-agnostic Razorpay SDK wrapper for orders, payments, webhooks, and refunds.

Install

npm install multivendor-razorpay

The razorpay SDK is included as a dependency — you do not need to install it separately.

Usage

import { RazorpayClient } from 'multivendor-razorpay';

const client = new RazorpayClient({
  keyId: process.env.RAZORPAY_KEY_ID!,
  keySecret: process.env.RAZORPAY_KEY_SECRET!,
  webhookSecret: process.env.RAZORPAY_WEBHOOK_SECRET,
});

// Create an order for Checkout.js
const order = await client.createOrder({
  amount: 999.99,
  currency: 'INR',
  receipt: 'ORD-12345',
  notes: {
    orderId: '12345',
    orderPrefixId: 'ORD-12345',
    customerId: '678',
  },
});

// Verify payment signature after checkout
client.verifyPaymentSignature(
  { orderId: order.id, paymentId: 'pay_xxx' },
  signatureFromFrontend
);

// Capture and parse success
const payment = await client.capturePayment('pay_xxx');
const result = client.parsePaymentSuccess(payment);

// Create refund
const refund = await client.createRefund('pay_xxx', 50.0);

API

| Method | Description | |--------|-------------| | getKeyId() | Returns configured Razorpay key ID (for Checkout.js) | | createOrder(params) | Create a Razorpay order | | fetchOrder(id) | Fetch order by ID | | fetchPayment(id) | Fetch payment by ID | | findLatestOrderByNotesOrderId(orderId) | Best-effort order lookup by notes.orderId | | findCapturedPaymentByOrderId(razorpayOrderId) | Find captured payment for order | | verifyPaymentSignature(params, signature) | Verify checkout payment signature | | capturePayment(id, amount?, currency?) | Capture authorized payment | | verifyWebhookSignature(body, signature) | Verify webhook signature | | parsePaymentSuccess(payment) | Parse captured payment notes | | handleSuccessfulPayment(paymentId) | Fetch and parse captured payment | | createPaymentLink(params) | Create hosted payment link | | createRefund(paymentId, amount?, notes?) | Create full or partial refund | | fetchRefund(id, paymentId?) | Fetch refund | | listRefundsForPayment(paymentId) | List refunds for payment | | listAllRefunds(count?, skip?) | List all refunds |

Stripe vs Razorpay

| Concern | Stripe | Razorpay | |---------|--------|----------| | Frontend key | publishableKey | keyId | | Checkout unit | PaymentIntent | Order + Checkout.js | | Post-pay verify | webhook or confirm | signature verify + capture | | Metadata field | metadata | notes | | Cancel unpaid | explicit cancel API | orders auto-expire |

License

MIT