Open In App

Credit Card Number Validator using ReactJS

Credit card validation is an important step in every application in order to authenticate the user’s credit card number so that the application can proceed to the payment process if needed. It can be achieved using the validator module in ReactJS. The following example shows how to validate the user entered credit card number and check whether it is valid or not using the npm module in the ReactJS application.

Let us take a look at how the final application will look like:



 Number Validator using ReactJS

Prerequisites:

Creating React Application And Installing Module:



Step 1: Create a React application using the following command:

npx create-react-app creditcardvalidatedemo

Step 2: Move to the project folder using the following command:

cd creditcardvalidatedemo

Step 3: After creating the ReactJS application, Install the validator module using the following command:

npm install validator

Project Structure: It will look like the following

Project Structure

The updated dependencies in package.json will look like:

package.json:

"dependencies": {
    "@testing-library/jest-dom": "^5.16.5",
    "@testing-library/react": "^13.4.0",
    "@testing-library/user-event": "^13.5.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-scripts": "5.0.1",
    "validator": "^13.9.0",
    "web-vitals": "^2.1.4"
}

Example: Write the following code in the respective file




// App.js
  
import React, { useState } from "react";
import validator from 'validator'
  
const App = () => {
  
  const [errorMessage, setErrorMessage] = useState('')
    
  const validateCreditCard = (value) => {
    
    if (validator.isCreditCard(value)) {
      setErrorMessage('Valid CreditCard Number')
    } else {
      setErrorMessage('Enter valid CreditCard Number!')
    }
  }
  
  return (
    <div style={{
      marginLeft: '200px',
    }}>
      <pre>
        <h2>Validating CreditCard in ReactJS</h2>
        <span>Enter CreditCard: </span><input type="text" 
        onChange={(e) => validateCreditCard(e.target.value)}></input> <br />
        <span style={{
          fontWeight: 'bold',
          color: 'red',
        }}>{errorMessage}</span>
      </pre>
    </div>
  );
}
  
export default App

Step to Run Application: 

npm start
http://localhost:3000/

Output:

 Number Validator using ReactJS


Article Tags :