
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
A credit card utility belt for browser and Node.js apps
npm install cardy
import cardy from 'cardy';
// Validate a card number
const numberValidationResult = cardy.number.validate('4111111111111111');
// Validate an expiration date
const expirationValidationResult = cardy.expiration.validate('01/2020');
import cardy from 'cardy';
// Format a card number
const formattedNumber = cardy.number.format('4111111111111111');
// Format an expiration date
const formattedExpiration = cardy.expiration.format('01/2020');
import cardy from 'cardy';
// Credit card input field in your app
const numberInput = document.querySelector('#card-number-input');
numberInput.addEventListener('input', (e) => {
numberInput.value = cardy.number.mask(numberInput.value);
});
// Expiration date input field in your app
const expirationInput = document.querySelector('#card-expiration-input');
expirationInput.addEventListener('input', (e) => {
expirationInput.value = cardy.expiration.mask(expirationInput.value);
});
// Security code input field in your app
const securityCodeInput = document.querySelector('#card-security-code-input');
securityCodeInput.addEventListener('input', (e) => {
securityCodeInput.value = cardy.code.mask(securityCodeInput.value);
// Optionally, enforce the security code length by passing a valid `codeSize`
// value, which you can obtain from `card.number.validate()`
securityCodeInput.value = cardy.code.mask(securityCodeInput.value, 3);
});
const cardy = require('cardy');
// Validate a card number
const numberValidationResult = cardy.number.validate('4111111111111111');
// Validate an expiration date
const expirationValidationResult = cardy.expiration.validate('01/2020');
const cardy = require('cardy');
// Format a card number
const formattedNumber = cardy.number.format('4111111111111111');
// Format an expiration date
const formattedExpiration = cardy.expiration.format('01/2020');
FAQs
A credit card utility belt for browser and Node.js apps
The npm package cardy receives a total of 26 weekly downloads. As such, cardy popularity was classified as not popular.
We found that cardy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.