
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
textfield-length-validation
Advanced tools
This module modifies the character countdown for text fields and shows a message if it has more characters than admited.
This should be used in the following manner:
Install with the command:
npm install --save textfield-length-validation
Then, in your code:
import { lengthValidation } from 'textfield-length-validation';
let isValid = lengthValidation(input, counter, maxCharacters);
Where:
input
is the input fieldcounter
could be a <span>
tag to show the character countdownmaxCharacters
is the maximum number of characters allowed<input type="text" id="input"/>
<div>
Characters left <span id="textCounter"></span>
</div>
import { lengthValidation } from 'textfield-length-validation';
const input = document.getElementById('input');
const counter = document.getElementById('textCounter');
const maxCharacters = 10;
lengthValidation(input, counter, maxCharacters);
As it returns a boolean
, it can be used to disable a submit button.
FAQs
This module modifies the character countdown for text fields and shows a message if it has more characters than admited.
The npm package textfield-length-validation receives a total of 1 weekly downloads. As such, textfield-length-validation popularity was classified as not popular.
We found that textfield-length-validation 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.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.