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

@weblabllc/payments-core

v0.2.1

Published

Framework-free payment gateway abstractions: invoice, LiqPay, WayForPay, NOWPayments; Checkbox (PRRO) fiscalization client and orchestrator

Readme

@weblabllc/payments-core

npm ci license

Framework-free payment layer for Ukrainian e-commerce: one PaymentGateway interface, four gateways (invoice / LiqPay / WayForPay / NOWPayments), Checkbox (ПРРО) fiscalization client and an orchestrator with auto-retries and manual resend. Zero framework imports — adapters for Vendure/Express/Nest live in your app.

Install

npm install @weblabllc/payments-core

Enable only what you need

import { PaymentsRegistry } from '@weblabllc/payments-core/registry'

const payments = await PaymentsRegistry.create({ gateways: ['invoice', 'nowpayments'] })
payments.get('liqpay') // throws: not enabled

Or import a single gateway directly:

import { LiqPayGateway } from '@weblabllc/payments-core/liqpay'

Create a payment

const result = await payments.get('nowpayments').createPayment(
  { orderCode: 'ORD-1', amountMinor: 45000, currencyCode: 'UAH', description: 'Замовлення ORD-1',
    returnUrl: 'https://shop.ua/thanks/ORD-1', webhookUrl: 'https://api.shop.ua/payments/nowpayments/callback' },
  { apiKey: '...', ipnSecret: '...' },
)
// result.redirect → { url, method } ; result.publicMetadata → safe for the storefront

Webhooks

Every webhook-confirmed gateway exposes webhook: { parse, verify, extract, respond? }. If webhook.signatureHeaderName is set (NOWPayments), pass that header's value as the third argument: webhook.verify(payload, config, req.headers['x-nowpayments-sig']).

Outgoing requests time out after 20 s; a non-JSON gateway reply becomes a clear error.

Fiscalization (Checkbox ПРРО)

import { CheckboxClient } from '@weblabllc/payments-core/checkbox'
import { Fiscalizer, InMemoryFiscalizationStore } from '@weblabllc/payments-core/fiscalization'

const client = new CheckboxClient({ licenseKey: '...', login: '...', password: '...' })
const fiscal = new Fiscalizer(client, myStore, { maxAutoAttempts: 5 })

await fiscal.fiscalize(payment.id, buildReceipt)      // auto mode: call from a queue job
await fiscal.resendManually(payment.id, buildReceipt) // manual resend after auto attempts exhausted
await fiscal.listUnfiscalized()                        // feed for the "unfiscalized payments" screen

Fiscalizer is idempotent (a receipt is never issued twice), opens the shift when needed, and persists state through the FiscalizationStore port — implement it over your DB (an in-memory reference ships in the box). Payment entries are online-first: { type: 'CASHLESS', value, label? }.

Test

npm test