Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

launchpad.net/goforms

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

launchpad.net/goforms

  • v0.0.0-20110725085917-000000000015
  • Go
  • Socket score

Version published
Created
Source

The goforms library is a proof-of-concept for a data validation, cleaning and error collecting library for golang, in similar style to Django's django.forms library.

While thinking about writing web application in go, I wanted to be able to encapsulate the data validation and cleaning for http request handlers, so that the handler itself could be thin:

{{{ func my_post_handler(w http.ResponseWriter, r *http.Request){ myForm := MyCustomForm() myForm.SetFormData(r.Form)

if myForm.IsValid(){
    // Do something with myForm.CleanedData, which is the request's form
    // data after being cleaned to the correct types etc.
} else {
    // Re-render a template, passing in egForm.Errors which is a map
    // of errors for each field on the form.
}

}}}

As there didn't seem to be anything similar available for golang, I created goforms as a proof-of-concept (see http://goo.gl/pFh6I for golang-nuts post).

Try gorun example.go to see a real example in action.

FAQs

Package last updated on 25 Jul 2011

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc