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

gebeya-whatsapp-otp

v1.5.0

Published

React WhatsApp OTP verification component with Supabase integration

Readme

Gebeya WhatsApp OTP

A React component library for WhatsApp OTP verification with Supabase integration. This package provides a complete solution for implementing phone number verification using WhatsApp OTP in your React applications.

Features

  • WhatsApp OTP Integration - Send and verify OTP codes via WhatsApp
  • Supabase Backend - Built-in Supabase integration for data storage
  • React Components - Ready-to-use UI components
  • TypeScript Support - Full TypeScript support with type definitions
  • Customizable Styling - Tailwind CSS support with custom styling options
  • Country Selection - Multi-country support with country code selection
  • Error Handling - Comprehensive error handling and user feedback
  • Security Features - Rate limiting, attempt tracking, and phone suspension
  • Accessibility - WCAG compliant components

Quick Start

Installation

npm install gebeya-whatsapp-otp

Basic Usage

import React from "react";
import {
  WhatsAppOTPProvider,
  VerifyWithWhatsAppButton,
  WhatsAppOTPModal,
} from "gebeya-whatsapp-otp";

function App() {
  const config = {
    supabaseUrl: "YOUR_SUPABASE_URL",
    supabaseKey: "YOUR_SUPABASE_ANON_KEY",
  };

  return (
    <WhatsAppOTPProvider config={config}>
      <div>
        <h1>Welcome</h1>
        <VerifyWithWhatsAppButton>
          Verify with WhatsApp
        </VerifyWithWhatsAppButton>
      </div>
      <WhatsAppOTPModal />
    </WhatsAppOTPProvider>
  );
}

Documentation

📖 Complete Setup Guide - Detailed installation and configuration instructions

Components

WhatsAppOTPProvider

Context provider that manages the OTP verification state and Supabase connection.

VerifyWithWhatsAppButton

Button component that triggers the OTP verification flow. Supports multiple variants and sizes.

WhatsAppOTPModal

Modal component that handles the phone number input and OTP verification interface.

useWhatsAppOTP

Custom hook for advanced usage and custom implementations.

Examples

Basic Implementation

import {
  WhatsAppOTPProvider,
  VerifyWithWhatsAppButton,
  WhatsAppOTPModal,
} from "gebeya-whatsapp-otp";

function LoginPage() {
  const config = {
    supabaseUrl: process.env.REACT_APP_SUPABASE_URL!,
    supabaseKey: process.env.REACT_APP_SUPABASE_ANON_KEY!,
  };

  const callbacks = {
    onSuccess: (phoneNumber: string) => {
      console.log("Phone verified:", phoneNumber);
      // Redirect to dashboard
    },
    onError: (error: string) => {
      console.error("Verification failed:", error);
      // Show error message
    },
  };

  return (
    <WhatsAppOTPProvider config={config} callbacks={callbacks}>
      <div className="min-h-screen flex items-center justify-center">
        <div className="text-center">
          <h1 className="text-2xl font-bold mb-4">Welcome</h1>
          <p className="text-gray-600 mb-6">Please verify your phone number</p>
          <VerifyWithWhatsAppButton className="w-full">
            Verify Phone Number
          </VerifyWithWhatsAppButton>
        </div>
      </div>
      <WhatsAppOTPModal />
    </WhatsAppOTPProvider>
  );
}

Custom Styling

<VerifyWithWhatsAppButton
  variant="outline"
  size="lg"
  className="bg-green-600 hover:bg-green-700 text-white"
>
  Custom Styled Button
</VerifyWithWhatsAppButton>

Custom Countries

const customCountries = [
  { code: "+1", country: "United States", flag: "🇺🇸" },
  { code: "+44", country: "United Kingdom", flag: "🇬🇧" },
  { code: "+251", country: "Ethiopia", flag: "🇪🇹" },
];

<WhatsAppOTPModal countries={customCountries} />;

Requirements

  • React 16.8.0 or higher
  • React-DOM 16.8.0 or higher
  • Supabase account and project
  • Node.js 14.0 or higher

Browser Support

  • Chrome 60+
  • Firefox 55+
  • Safari 12+
  • Edge 79+

Contributing

We welcome contributions! Please see our Contributing Guide for details.

License

MIT License - see the LICENSE file for details.

Support

Changelog

See CHANGELOG.md for a list of changes and version history.