Validating React forms easily without third-party libraries
rafaelcamargo.com
Validating React forms easily without third-party libraries
1–4 of 4 posts
Re: Validating React forms easily without third-party libraries
#2Re: Validating React forms easily without third-party libraries
#3Over the past few years, I've tried out a bunch of libraries that claimed to make React form validation easier. My takeaway? They're annoyingly intrusive and make the code way more complex than it needs to be. In this post, I'm sharing a library-free approach that is stupidly simple and has worked like a charm for my form validations. By writing just 2 functions, I avoid a whole library.
I'm already working with React and it's behaviors, don't need something surprisingly large to learn for ... a form.
Re: Validating React forms easily without third-party libraries
#4As much as practical I'd rather let the back end do the validation and return some sensible message back to the user if there's a problem.
I think the example in the article is nice, that's not to say I disagree necessary with the article.