
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.
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
The npm package notesgen-validation receives a total of 1 weekly downloads. As such, notesgen-validation popularity was classified as not popular.
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
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.