Adding Checker library to Forms section.

A link to the project's pkg.go.dev page https://pkg.go.dev/github.com/cinar/checker

A link to the project's Go Report Card report
https://goreportcard.com/report/github.com/cinar/checker

A link to a code coverage report
https://app.codecov.io/gh/cinar/checker
This commit is contained in:
Onur Cinar 2023-06-21 19:44:51 -07:00 committed by Avelino
parent 6c7021c279
commit 438cd059f9

View File

@ -1107,6 +1107,7 @@ _Libraries for working with forms._
- [bind](https://github.com/robfig/bind) - Bind form data to any Go values. - [bind](https://github.com/robfig/bind) - Bind form data to any Go values.
- [binding](https://github.com/mholt/binding) - Binds form and JSON data from net/http Request to struct. - [binding](https://github.com/mholt/binding) - Binds form and JSON data from net/http Request to struct.
- [checker](https://github.com/cinar/checker) - Checker helps validating user input through rules defined in struct tags or directly through functions.
- [conform](https://github.com/leebenson/conform) - Keeps user input in check. Trims, sanitizes & scrubs data based on struct tags. - [conform](https://github.com/leebenson/conform) - Keeps user input in check. Trims, sanitizes & scrubs data based on struct tags.
- [form](https://github.com/go-playground/form) - Decodes url.Values into Go value(s) and Encodes Go value(s) into url.Values. Dual Array and Full map support. - [form](https://github.com/go-playground/form) - Decodes url.Values into Go value(s) and Encodes Go value(s) into url.Values. Dual Array and Full map support.
- [formam](https://github.com/monoculum/formam) - decode form's values into a struct. - [formam](https://github.com/monoculum/formam) - decode form's values into a struct.