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

@fio-pay/sdk

v0.1.2

Published

TypeScript SDK for the Fio subscription billing API (PIX payments)

Readme

@fio-pay/sdk

TypeScript SDK for the Fio subscription billing API. Build recurring payments with PIX in minutes.

Install

npm install @fio-pay/sdk

Quick start

import { Fio } from '@fio-pay/sdk'

const fio = new Fio({ apiKey: 'fio_test_...' })

// Create a customer
const customer = await fio.customers.create({
  name: 'Maria Silva',
  taxId: '12345678900',
  email: '[email protected]',
})

// Create a plan
const plan = await fio.plans.create({
  name: 'Pro',
  amountCentavos: 4990, // R$49.90
  interval: 'month',
  intervalCount: 1,
})

// Start a subscription
const subscription = await fio.subscriptions.create({
  customerId: customer.id,
  planId: plan.id,
})

// List charges
const charges = await fio.charges.list({ subscriptionId: subscription.id })

Resources

| Resource | Methods | | --------------------- | ----------------------------------------------- | | fio.customers | create, get, update, list | | fio.plans | create, get, list | | fio.subscriptions | create, get, cancel, list | | fio.charges | create, get, refund, list | | fio.invoices | get, list | | fio.webhookEndpoints| create, get, delete, list | | fio.test | advanceTime (test environment only) |

Webhook verification

import { Fio } from '@fio-pay/sdk'

const isValid = Fio.webhooks.verify({
  payload: rawBody,
  signature: headers['x-fio-signature'],
  secret: 'whsec_...',
})

Error handling

import { Fio, FioValidationError, FioAuthError } from '@fio-pay/sdk'

try {
  await fio.customers.create({ name: '' })
} catch (err) {
  if (err instanceof FioValidationError) {
    console.log(err.errors) // validation details
  }
  if (err instanceof FioAuthError) {
    console.log('Invalid API key')
  }
}

Configuration

const fio = new Fio({
  apiKey: 'fio_live_...', // or fio_test_ for sandbox
  baseUrl: 'https://api.fio.com.br/v1', // optional, defaults to production
})

The environment (test or live) is automatically detected from the API key prefix.

Requirements

  • Node.js 20+
  • ESM only ("type": "module")

License

MIT