Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have searched the web trying to find some tutorials for the GO programming language that show how to program web apps, but I have not found anything.

I was just wondering if it is possible to write web apps with the GO programming language? And if so, is it a good language to write web apps with?

Thanks for any help! Metropolis

PERFECT! Thanks guys, both of your answers are exactly what I was looking for.

share|improve this question

7 Answers

up vote 22 down vote accepted

Yes, there is a Writing Web Applications codelab on golang.org that goes over the details.

share|improve this answer

Also, check out hoisie's web framework

share|improve this answer
Great thanks marketer! Its so hard to find things for GO. You do a search for GO frameworks and what do you get? lol......Or GO turotials....I think Google needs to create a page with all GO resources in one place so that we can find these things. – Metropolis May 17 '10 at 19:16
1  
There are quite a few resources linked from Go's Google Code wiki: code.google.com/p/go/wiki/WikiIndex?tm=6 – Evan Shaw May 18 '10 at 13:20
See also goweb.googlecode.com for if you want to build APIs in GO. – Mat Ryer Aug 30 '11 at 17:15
10  
Use golang as the search term when searching for Go stuff. – Seun Osewa Apr 9 '12 at 17:53

For the server side, yes, it is a good language. For instance http://golang.org is a Go server.

share|improve this answer

There are also some nice URL routing tools and web frameworks for Go:

For example, Gorilla.mux does some neat things:

func main() {
    router := mux.NewRouter()
    router.HandleFunc("/", YourGETHandlerFunc).Methods("GET")
    router.HandleFunc("/", YourPOSTHandlerFunc).Methods("POST")
    http.Handle("/", router)
}

If you're looking for more resources for web development...

share|improve this answer

Note that Go is supported in Google App Engine https://developers.google.com/appengine/docs/go/overview

And here you can find a number of Go web frameworks: http://go-lang.cat-v.org/pure-go-libs

share|improve this answer

You can use Go to write web apps, but it may not be suitable. You have to keep a lot of things in mind if you want to write robust apps. If what you need is rapid development, Go may seem much too low-level.

Consider all the tricky things that you need to deal with: XSS, CSRF, SQL injection, user authentication, etc. Meanwhile, there're some other languages or frameworks that can handle these issues automatically (or magically) for you.

share|improve this answer

As per my understanding, GO was built for developing server side software. You can find few talks (along with presentation slides and code) at http://golang.org/doc/ under talks section. Few more are available at http://code.google.com/p/go-wiki/wiki/GoTalks

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.