@proweblookofficial/proweblook-phone-validator

1.0.8 • Public • Published

Proweblook Phone Validator

This package provides a Node.js interface for validating phone numbers using the ProWebLook Phone Validator API.

Installation

You can install the package via npm:

Usage

npm install  @proweblookofficial/proweblook-phone-validator


// Import the ProweblookFormValidator class
const ProweblookFormValidator = require('@proweblookofficial/proweblook-phone-validator');

// Initialize the ProweblookFormValidator instance with your API key
const formValidator = new ProweblookFormValidator('your_api_key');

// Example usage
(async () => {
    try {
        // Check account balance
        const balance = await formValidator.checkBalance();
        console.log('Account balance:', balance);

        // Validate a phone number
        const phoneNumber = '919038655955';
        const countryCode = 'IN'; //OPTIONAL BUT THEN YOU HAVE TO PASS COUNTRY CODE IN PHONE NUMBER
        const validationResponse = await formValidator.validatePhoneNumber(phoneNumber, countryCode);
        console.log('Phone number validation:', validationResponse);
    } catch (error) {
        console.error('Error:', error.message);
    }
})();

Make sure to replace 'your_api_key' with your actual API key provided by ProWebLook.

API Key

You need to sign up on ProWebLook to get your API key.

License

This package is open source and available under the [MIT License].

Readme

Keywords

none

Package Sidebar

Install

npm i @proweblookofficial/proweblook-phone-validator

Weekly Downloads

5

Version

1.0.8

License

ISC

Unpacked Size

3.12 kB

Total Files

3

Last publish

Collaborators

  • proweblookteam
  • dubeychandan996