
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
notesgen-validation
Advanced tools
this package contain all type of validations
https://github.com/Aabir1/notesgen-forms-validation
npm i notesgen-validation
import NotesgenValidation from 'notesgen-validation';
// simple usage
const result = NotesgenValidation.isNumber(123123);
// use this function to validate the complete form.
validate = () => {
let errors = {}
let isValid = true;
if (NotesgenValidation.isEmpty(this.state.model.link)) {
errors.link = "link field cannot be empty."
isValid = false
} else if (!NotesgenValidation.isUrl(this.state.model.link)) {
errors.link = "Please enter valid url."
isValid = false
}
if (NotesgenValidation.isEmpty(this.state.model.title)) {
errors.title = "Title field cannot be empty."
isValid = false
} else if (NotesgenValidation.isNumber(this.state.model.title)) {
errors.title = "Numbers are not allowed in title field."
isValid = false
}
if (!NotesgenValidation.isFile(file)) {
errors.image = 'Please select valid image.';
result = false;
} else if (!NotesgenValidation.isValidFileSize(file)) {
errors.image = 'Image should not be greater than 2MB.';
result = false;
}
this.setState({ errors: errors })
return isValid;
}
submitForm = async () => {
if (this.validate()) {
// you api call
//whatever you wanna do after validation
}
}
It is a basic validator if any validator is missing, please raise an issue at https://github.com/Aabir1/notesgen-forms-validation/issues.
FAQs
All type of form validations on a website
We found that notesgen-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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.