Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
cleave-zen
Advanced tools
cleave-zen
A simple library to help you format input text content
Unlike its predecessor cleave.js,
cleave-zen
no longer binds to DOM input elements. It now functions as a
versatile formatting library, suitable for use in Node.js, browsers, and easier
integration with frameworks like React, Angular, and any other libraries.
TL;DR Demo | Usage Examples
npm install --save cleave-zen
You can use it on unpkg.com as a CDN version
You have two text fields to display credit card number and type
<input class="creditcard-input" type="text" />
<input class="creditcard-type" type="text" />
Now in your JavaScript
import { formatCreditCard, getCreditCardType } from 'cleave-zen'
const creditcardInput = document.querySelector('.creditcard-input')
const creditCardType = document.querySelector('.creditcard-type')
creditcardInput.addEventListener('input', e => {
const value = e.target.value
creditcardInput.value = formatCreditCard(value)
creditCardType.innerHTML = getCreditCardType(value)
})
import React, { useRef, useState } from 'react'
import { formatCreditCard, getCreditCardType } from 'cleave-zen'
const App = () => {
const inputRef = useRef(null)
const [value, setValue] = useState('')
const [type, setType] = useState('')
return (
<>
<input
ref={inputRef}
value={value}
onChange={e => {
const value = e.target.value
setValue(formatCreditCard(value))
setType(getCreditCardType(value))
}}
/>
<div>value: {value}</div>
<div>type: {type}</div>
</>
)
}
This lib is written by TypeScript, so if you prefer to use it that way:
import { formatCreditCard, type FormatCreditCardOptions } from 'cleave-zen'
const options: FormatCreditCardOptions = { delimiter: '-' }
const value: string = formatCreditCard('5163000011112222', options)
When you manually updating the input field with formatted value, the cursor moves to the end of the field, which can be super annoying when you typing or deleting letters inside the string content.
This library can fix this issue for you! Simply add registerCursorTracker
for
the input field:
import { registerCursorTracker, DefaultCreditCardDelimiter } from 'cleave-zen'
registerCursorTracker({ input: creditCardInput, delimiter: DefaultCreditCardDelimiter }})
And for ReactJS usage above:
import { useRef, useEffect } from 'react'
...
const inputRef = useRef(null)
useEffect(() => {
return registerCursorTracker({ input: inputRef.current, delimiter: DefaultCreditCardDelimiter })
}, [])
...
See all examples in this repo
FAQs
WIP
We found that cleave-zen demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.