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 🙏

© 2024 – Pkg Stats / Ryan Hefner

oursms-otp-redis

v1.0.5

Published

A Node.js module for OTP (One-Time Password) generation and verification using Redis for storage and OurSMS API for sending SMS messages.

Downloads

23

Readme

oursms-otp-redis

A Node.js module for OTP (One-Time Password) generation and verification using Redis for storage and OurSMS API for sending SMS messages.

Features

  • Generate and send OTP to phone numbers
  • Verify OTP
  • Customizable OTP length and message template
  • Uses Redis for OTP storage with expiration
  • Integrates with OurSMS API for sending SMS

Installation

npm install oursms-otp-redis

Usage

Initialize the Service

const OTPService = require("oursms-otp-redis");
// or
import OTPService from "oursms-otp-redis";

const otpService = new OTPService("redis://localhost:6379", "your-sms-api-key");

Send OTP

try {
  const response = await otpService.sendOTP(
    "96654XXXXXX",
    6,
    "Your OTP is: {otp}",
    "YOUR_SENDER_NAME"
  );
  console.log(response);
} catch (error) {
  console.error(error);
}

Verify OTP

try {
  const isValid = await otpService.verifyOTP("96654XXXXXX", "123456");
  console.log(isValid);
} catch (error) {
  console.error(error);
}

API Reference

new OTPService(redisUrl, smsApiKey)

Creates a new instance of the OTP service.

  • redisUrl: URL of the Redis server
  • smsApiKey: API key for OurSMS service

sendOTP(phoneNumber, otpLength, messageTemplate,SENDER_NAME)

Generates and sends an OTP to the specified phone number.

  • phoneNumber: The recipient's phone number
  • otpLength: Length of the OTP to generate
  • messageTemplate: SMS message template. Use {otp} as a placeholder for the OTP.
  • SENDER_NAME: Your sender name from OurSMS.com

Returns a promise that resolves with the API response.

verifyOTP(phoneNumber, otp)

Verifies the OTP for the given phone number.

  • phoneNumber: The phone number to verify the OTP for
  • otp: The OTP to verify

Returns a promise that resolves to true if the OTP is valid, false otherwise.

License

ISC


حزمة oursms-otp-redis

حزمة Node.js لتوليد والتحقق من كلمة المرور لمرة واحدة (OTP) باستخدام Redis للتخزين و OurSMS API لإرسال الرسائل القصيرة.

الميزات

  • توليد وإرسال OTP إلى أرقام الهواتف
  • التحقق من صحة OTP
  • طول OTP وقالب الرسالة قابل للتخصيص
  • يستخدم Redis لتخزين OTP مع وقت انتهاء الصلاحية
  • يتكامل مع OurSMS API لإرسال الرسائل القصيرة

التثبيت

npm install oursms-otp-redis

الاستخدام

تهيئة الخدمة

const OTPService = require("oursms-otp-redis");
// أو
import OTPService from "oursms-otp-redis";

const otpService = new OTPService(
  "redis://localhost:6379",
  "مفتاح-api-الخاص-بك"
);

إرسال OTP

try {
  const response = await otpService.sendOTP(
    "96654XXXXXX",
    6,
    "رمز التحقق الخاص بك هو: {otp}",
    "اسم المرسل الخاص بك"
  );
  console.log(response);
} catch (error) {
  console.error(error);
}

التحقق من OTP

try {
  const isValid = await otpService.verifyOTP("96654XXXXXX", "123456");
  console.log(isValid);
} catch (error) {
  console.error(error);
}

مرجع API

new OTPService(redisUrl, smsApiKey)

ينشئ نسخة جديدة من خدمة OTP.

  • redisUrl: عنوان URL لخادم Redis
  • smsApiKey: مفتاح API لخدمة OurSMS

sendOTP(phoneNumber, otpLength, messageTemplate,SENDER_NAME)

يولد ويرسل OTP إلى رقم الهاتف المحدد.

  • phoneNumber: رقم هاتف المستلم
  • otpLength: طول OTP المراد توليده
  • messageTemplate: قالب رسالة SMS. استخدم {otp} كعنصر متغير لـ OTP.
  • SENDER_NAME: اسم المرسل الخاص بك OurSMS.com

يعيد وعدًا يتم حله مع استجابة API.

verifyOTP(phoneNumber, otp)

يتحقق من صحة OTP لرقم الهاتف المعطى.

  • phoneNumber: رقم الهاتف للتحقق من OTP الخاص به
  • otp: OTP المراد التحقق منه

يعيد وعدًا يتم حله إلى true إذا كان OTP صالحًا، وfalse خلاف ذلك.

الترخيص

ISC