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

zarinpal-checkout

v1.1.0

Published

Type-safe ZarinPal checkout client for Node.js with modern tooling and backwards-compatible API methods.

Readme

zarinpal-checkout

A modern, type-safe ZarinPal checkout client for Node.js. This 1.0.0 release keeps backward-compatible method names while upgrading internals, tooling, and tests.

zarinpal-checkout cover

npm version npm total downloads CI Wiki License: MIT TypeScript

Features

  • ✅ TypeScript-first with bundled type definitions
  • ✅ Backward-compatible APIs (create, PaymentRequest, PaymentVerification, UnverifiedTransactions, RefreshAuthority, TokenBeautifier)
  • ✅ Options-based client creation with createWithOptions
  • ✅ Sandbox and production mode support
  • ✅ Currency support for IRR and IRT
  • ✅ Configurable request timeout handling
  • ✅ Fast built-in Node.js test runner
  • ✅ Strict linting + type-checking workflows
  • ✅ Rollup build output (ESM + CJS) with declaration bundling
  • ✅ Ready-to-run examples for all public methods

Installation

# npm
npm install zarinpal-checkout

# yarn
yarn add zarinpal-checkout

# pnpm
pnpm add zarinpal-checkout

Usage

Official ZarinPal documentation: https://www.zarinpal.com/docs/ Project wiki: https://github.com/siamak/zarinpal-checkout/wiki

Express Example App

If you want a ready-to-run Express integration using this package, see:

Backward-compatible API (recommended for existing users)

import ZarinpalCheckout from 'zarinpal-checkout';

const zarinpal = ZarinpalCheckout.create(
  'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
  false,
  'IRT'
);

const request = await zarinpal.PaymentRequest({
  Amount: 1000,
  CallbackURL: 'https://example.com/payment/callback',
  Description: 'Order #123',
  Email: '[email protected]',
  Mobile: '09120000000'
});

console.log(request.url);

Options-based API

import { createWithOptions } from 'zarinpal-checkout';

const zarinpal = createWithOptions('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', {
  sandbox: true,
  currency: 'IRR',
  timeoutMs: 8000
});

Examples

The examples/ directory includes runnable examples for every public method:

  • examples/create-client.ts
  • examples/payment-request.ts
  • examples/payment-verification.ts
  • examples/unverified-transactions.ts
  • examples/refresh-authority.ts
  • examples/token-beautifier.ts

Run with your preferred TypeScript runtime (for example tsx or ts-node) after replacing the merchant ID and callback URLs.

API Reference

PaymentRequest(input)

Creates a payment authority.

PaymentVerification(input)

Verifies a completed payment authority.

UnverifiedTransactions()

Fetches unverified authorities.

RefreshAuthority(input)

Refreshes an existing authority expiration.

TokenBeautifier(token)

Preserves previous token beautifier behavior.

Development

# npm
npm install && npm run lint && npm run typecheck && npm test && npm run build

Author

  • Siamak Mokhtari

License

MIT