
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
js-textfield-validation
Advanced tools
An npm Package to validate textfield value.
# with npm
npm install js-textfield-validation
There are chainable and non-chainable methods.
| Methods | Description |
|---|---|
alphanumericOnly() | To accept alphanumeric only. |
dollarValue() | To create a value with two decimal places. |
ipAddress() | To accept number and dot only. |
noSpace() | To remove all the spaces. |
numOnly() | To remove all the non integer. |
removeNum() | To remove all the number. |
removeLeadingZero() | To remove all the leading zero. |
singleSpace() | To accept single space between two characters only. |
truncate(length: integer) | To truncate the value to a specifc length. |
wordOnly() | To remove all non alphabet. |
| Methods | Description | Output | Remark |
|---|---|---|---|
validateAlphanumericOnly(value: string) | To check whether the value contains alphanumberic only. | boolean | nil |
validateEmail(email: string) | To check whether value is a valid email format. | boolean | nil |
validateNRIC(nric: string) | To check whether value is an valid NRIC in Singapore. | boolean | Source |
validateIPAddress(address: string) | To check whether value is a valid IP address. | boolean | nil |
import Validation from "js-textfield-validation";
import { validateEmail, validateIPAddress, validateNRIC } from "js-textfield-validation";
import React, { Component } from "react";
import TextField from "@material-ui/core/TextField";
import Validation from "js-textfield-validation";
class App extends Component {
constructor() {
super();
this.state = {
name: "",
error: "",
};
};
handleChange = event => {
let validatedName = new Validations(event.target.value).removeNum().singleSpace();
if (validatedName.error !== "") {
this.setState({ name: validatedName.value, error: validatedName.error });
} else {
this.setState({ name: validatedName, error: "" });
}
};
render() {
return (
<div>
<TextField
id="name"
label"Name"
variant="outlined"
placeholder="Enter your name here."
value={ this.state.name }
onChange={ this.handleChange }
helperText={ this.state.error }
/>
</div>
);
};
};
import React, { Component } from "react";
import TextField from "@material-ui/core/TextField";
import Validation, { validateEmail } from "js-textfield-validation";
class App extends Component {
constructor() {
super();
this.state = {
email: "",
errorMessage: ""
};
};
handleChange = event => {
let newEmail = new Validation(event.target.value).noSpace().value;
const isValidEmail = validateEmail(newEmail);
if (isValidEmail) {
this.setState({ email: newEmail, errorMessage: "" })
} else {
this.setState({ email: newEmail, errorMessage: "Invalid email" })
}
};
render() {
return (
<div>
<TextField
id="email"
label"Email"
variant="outlined"
placeholder="Enter your email here."
value={ this.state.email }
onChange={ this.handleChange }
/>
<div>{ this.state.errorMessage }</div>
</div>
);
};
};
LICENSE.md
FAQs
An npm Package to validate textfield value.
The npm package js-textfield-validation receives a total of 0 weekly downloads. As such, js-textfield-validation popularity was classified as not popular.
We found that js-textfield-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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.