Re: [go-nuts] Re: Web Framework for Beginners

2018-01-28 Thread Lars Seipel
On Sun, Jan 28, 2018 at 01:08:57AM -0800, Florin Pățan wrote: > And to prove how flawed your analogy with the Hello World vs extending a > distributed database is... When you start programming you barely understand > what fmt.Println() is, how would you expect someone that doesn't understand > t

Re: [go-nuts] Re: Web Framework for Beginners

2018-01-28 Thread Florin Pățan
You, as well as the others, clearly not spent any time either teaching or talking to people that teach anything to people. I used to have the same mentality towards the problem, yet once I've started training people or talking with people that do this for a living, I have discovered that the re

Re: [go-nuts] Re: Web Framework for Beginners

2018-01-27 Thread Lucio
On Saturday, 27 January 2018 23:49:19 UTC+2, Pat Farrell wrote: > > > > On Saturday, January 27, 2018 at 4:34:39 PM UTC-5, Lars Seipel wrote: >> >> We're talking about a beginning Go programmer that has yet to learn how >> some of the more advanced parts of the language fit together properly. >

Re: [go-nuts] Re: Web Framework for Beginners

2018-01-27 Thread matthewjuran
> > Interesting. Does this work on all browsers on all platforms? Untested here. I've seen it work on macOS with Safari, Chrome, and Firefox. The || is to support how different browsers indicate a back button press / back cache load. Matt On Saturday, January 27, 2018 at 3:49:19 PM UTC-6, P

Re: [go-nuts] Re: Web Framework for Beginners

2018-01-27 Thread Pat Farrell
On Saturday, January 27, 2018 at 4:34:39 PM UTC-5, Lars Seipel wrote: > > We're talking about a beginning Go programmer that has yet to learn how > some of the more advanced parts of the language fit together properly. Sorry, no. Folks coming from other languages want to know how to do the u

Re: [go-nuts] Re: Web Framework for Beginners

2018-01-27 Thread Lars Seipel
On Thu, Jan 25, 2018 at 01:26:00PM -0800, Florin Pățan wrote: > I'm not saying that we should be against recommending the standard library, > by all means, it's one of the best assets of the language. But maybe it's > time we should think about saying: Start with this framework, insert > framewo

[go-nuts] Re: Web Framework for Beginners

2018-01-27 Thread Pat Farrell
On Thursday, January 25, 2018 at 8:38:01 PM UTC-5, matthe...@gmail.com wrote: > > Specific question: how do you handle the user hitting the "back" button on >> their browser? Its very common and a lot of simple approaches don't handle >> it well. > > > This was a problem for me. I force the pa

[go-nuts] Re: Web Framework for Beginners

2018-01-25 Thread matthewjuran
> > Specific question: how do you handle the user hitting the "back" button on > their browser? Its very common and a lot of simple approaches don't handle > it well. This was a problem for me. I force the page to reload instead of using the cache: // https://stackoverflow.com/questions/8

[go-nuts] Re: Web Framework for Beginners

2018-01-25 Thread Florin Pățan
While you are right, you get a lot from the builtin stuff, a potential user coming from another language does not want to go via the chores of constructing their own router. Or other helpers. Or if they are used to ORMs, getting back to good old SQL will be a major problem. And so on and so for

[go-nuts] Re: Web Framework for Beginners

2018-01-25 Thread Pat Farrell
On Thursday, January 25, 2018 at 8:36:29 AM UTC-5, matthe...@gmail.com wrote: > > Here’s a third vote for the standard library. > https://golang.org/pkg/net/http/ + https://golang.org/pkg/html/template/ > are already effectively a web framework. > OK, I know this is a frequent answer, just use

[go-nuts] Re: Web Framework for Beginners

2018-01-25 Thread matthewjuran
Here’s a third vote for the standard library. https://golang.org/pkg/net/http/ + https://golang.org/pkg/html/template/ are already effectively a web framework. Matt On Thursday, January 25, 2018 at 3:15:25 AM UTC-6, Florin Pățan wrote: > > Big plus one for Buffalo. Out of the frameworks I've se

[go-nuts] Re: Web Framework for Beginners

2018-01-25 Thread Florin Pățan
Big plus one for Buffalo. Out of the frameworks I've seen in Go so far, Buffalo tries its best to stay close to the spirit of Go while delivering all the power to the user in an idiomatic manner. Do give it a try. -- You received this message because you are subscribed to the Google Groups "go

Re: [go-nuts] Re: Web Framework for Beginners

2018-01-24 Thread Glen Newton
I am not going to be popular expressing this, but I really really really like gowut: https://github.com/icza/gowut Just write (drop-dead simple) Go code for SPA, AJAX handled transparently, no fiddling with Javascript. See: Gowut - Showcase of Features h

Re: [go-nuts] Re: Web Framework for Beginners

2018-01-24 Thread Michael Masouras
I second what Shawn said, I just use the standard library. Whenever I need something not quite covered (or an easier abstraction), I use gorilla . On Wed, Jan 24, 2018 at 6:16 AM, dc0d wrote: > gobuffalo has a nice workflow (I've used it fo

[go-nuts] Re: Web Framework for Beginners

2018-01-24 Thread dc0d
gobuffalo has a nice workflow (I've used it for two in-house apps). On Wednesday, January 24, 2018 at 5:20:05 PM UTC+3:30, pradam wrote: > > Hi Gophers, > > As for Newbie to Go.I am excited to learn a *web framework* but I > don't know where to start please help me out by