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

@heyrafiki/rafiki-js

v0.1.0-beta.1

Published

Server-side JavaScript and TypeScript client for the Heyrafiki API.

Readme

Heyrafiki JavaScript SDK

Server-side JavaScript and TypeScript client for the Heyrafiki API.

Build from source

git clone https://github.com/heyrafiki/rafiki-js.git
cd rafiki-js
npm ci
npm run check

Node.js 22 or newer is required. The client connects to Sandbox projects with the same typed contract, idempotency behavior and request evidence used by the public REST API. Keep API keys on the server.

Prefer the command line? Build hey and run hey doctor to verify a local setup.

First request

import { Heyrafiki } from "@heyrafiki/rafiki-js";

const heyrafiki = new Heyrafiki({
  apiKey: process.env.HEYRAFIKI_API_KEY!,
});

const practitioners = await heyrafiki.practitioners.list({ limit: 5 });

Sandbox keys return synthetic data.

Covered Care

Check a Benefit, create the covered Booking and request authorization with a caller-owned idempotency key for each write.

const startsAt = new Date(Date.now() + 24 * 60 * 60 * 1000);
startsAt.setUTCHours(7, 0, 0, 0);
while ([0, 6].includes(startsAt.getUTCDay())) {
  startsAt.setUTCDate(startsAt.getUTCDate() + 1);
}
const endsAt = new Date(startsAt.getTime() + 60 * 60 * 1000);

const eligibility = await heyrafiki.eligibilityChecks.create(
  {
    member_reference: "member_demo_jubilee_001",
    service_code: "psychotherapy-60",
    scheduled_at: startsAt.toISOString(),
    amount: 350000,
    currency: "KES",
  },
  { idempotencyKey: crypto.randomUUID() },
);

const booking = await heyrafiki.bookings.create(
  {
    practitioner_id: "prc_2481",
    starts_at: startsAt.toISOString(),
    ends_at: endsAt.toISOString(),
    format: "online",
    payment_source: "covered",
  },
  { idempotencyKey: crypto.randomUUID() },
);

await heyrafiki.preauthorizations.create(
  {
    eligibility_check_id: eligibility.id,
    booking_id: booking.id,
  },
  { idempotencyKey: crypto.randomUUID() },
);

Amounts use the currency's minor unit. 350000 KES is KES 3,500.00.

Reproduce a Claim valuation

Use an explicit cutoff to retrieve only the Claim facts that had taken effect and entered system knowledge by that time.

const valuation = await heyrafiki.claims.valuation(
  "clm_synthetic_payer_001",
  { valuationAt: "2026-07-31T23:59:59.000Z" },
);

console.log(valuation.amount.outstanding);

Remittance remains payer advice. settled reflects independently observed money movement, and outstanding is payer liability less that settlement.

Errors

import { HeyrafikiApiError } from "@heyrafiki/rafiki-js";

try {
  await heyrafiki.claims.retrieve("clm_123");
} catch (error) {
  if (error instanceof HeyrafikiApiError) {
    console.error(error.status, error.code, error.requestId);
  }
}

Use the request ID when tracing a failed call. See Errors for retry guidance.

Develop

npm ci
npm run check
npm run pack:dry-run

Resources

License

Licensed under the Apache License 2.0.