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

@smsflow/smsflow

v0.2.0

Published

Node.js client library for the SMSFlow HTTPS API.

Readme

SMSFlow Node.js SDK

npm version CI License: MIT

The SMSFlow Node.js SDK makes it easy to send SMS messages and check SMS credit balance from backend Node.js applications, Express APIs, workers, scheduled jobs, CRM integrations, and other server-side JavaScript systems.

Documentation: https://docs.smsflow.co.za/

Install

npm install @smsflow/smsflow

Configuration

Store credentials in environment variables or your platform's secret manager.

SMSFLOW_CLIENT_ID=YOUR_CLIENT_ID
SMSFLOW_CLIENT_SECRET=YOUR_CLIENT_SECRET

Do not use this SDK from browser-side JavaScript. SMSFlow Client Secrets must stay on the server.

Usage

import { SmsFlowClient } from "@smsflow/smsflow";

const client = new SmsFlowClient({
  clientId: process.env.SMSFLOW_CLIENT_ID,
  clientSecret: process.env.SMSFLOW_CLIENT_SECRET,
  timeoutMs: 30000,
});

const result = await client.sendSms({
  campaignName: "Node SDK example",
  messages: [
    {
      destination: "27000000000",
      content: "Your SMSFlow Node.js test message was sent successfully.",
    },
  ],
});

console.log(result.sendResponse?.eventId);

Bulk send

await client.sendSms({
  campaignName: "Order dispatch alerts",
  messages: [
    { destination: "27000000000", content: "Order 1001 has shipped." },
    { destination: "27000000001", content: "Order 1002 has shipped." },
  ],
});

Check balance

const balance = await client.getBalance();
console.log(balance.balance);

Error handling

import {
  SmsFlowAuthenticationError,
  SmsFlowClient,
  SmsFlowError,
  SmsFlowValidationError,
} from "@smsflow/smsflow";

try {
  await client.sendSms({
    campaignName: "Transactional SMS",
    messages: [{ destination: "27000000000", content: "Hello from SMSFlow." }],
  });
} catch (error) {
  if (error instanceof SmsFlowAuthenticationError) {
    console.error("Check your SMSFlow Client ID and Client Secret.");
  } else if (error instanceof SmsFlowValidationError) {
    console.error("Fix the request before retrying.", error.code, error.body);
  } else if (error instanceof SmsFlowError) {
    console.error(error.status, error.code, error.retryable, error.body);
  }
  throw error;
}

Timeouts and retries

Set a request timeout and opt in to retries when your application can safely handle them:

const client = new SmsFlowClient({
  clientId: process.env.SMSFLOW_CLIENT_ID,
  clientSecret: process.env.SMSFLOW_CLIENT_SECRET,
  timeoutMs: 30000,
  retry: { retries: 2, baseDelayMs: 250, maxDelayMs: 2000 },
});

const balance = await client.getBalance(); // Safe to retry temporary failures.

await client.sendSms({
  campaignName: "Transactional SMS",
  retry: true, // Use only with your own idempotency or duplicate-send guard.
  messages: [{ destination: "27000000000", content: "Hello from SMSFlow." }],
});

Retry only temporary network failures, 408, 429, and 5xx responses. Do not retry validation errors, authentication failures, or insufficient-balance responses until the underlying issue has been fixed. Store the returned eventId against your own transaction or notification record.

Delivery status

The public HTTPS API currently exposes authentication, send, and balance endpoints. Delivery-status helper methods will be added when a public delivery-status endpoint is available.

Features

  • Get and cache SMSFlow login tokens.
  • Send one or more SMS messages.
  • Schedule SMS messages using UTC delivery time.
  • Respect opt-out checks by default.
  • Check account balance.
  • Throw typed structured errors when the API returns an error.
  • Configure timeouts and opt-in retries for temporary failures.

Local test send

This command sends a real SMS and may consume test credits:

SMSFLOW_CLIENT_ID=YOUR_CLIENT_ID \
SMSFLOW_CLIENT_SECRET=YOUR_CLIENT_SECRET \
SMSFLOW_DESTINATION=27000000000 \
npm run example:send

Security

Use this SDK from server-side Node.js applications. Do not expose SMSFlow Client Secrets in browser-side JavaScript.

License

MIT