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

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

Re: [go-nuts] Re: Web Framework

2016-09-28 Thread Justin Israel
On Wed, 28 Sep 2016, 6:50 PM Devashish Ghosh wrote: > https://github.com/jabong/florest-core A lightweight workflow based REST > API framework with features like customized workflow, logging, monitoring, > a/b test, dynamic config, profiling, swagger, database adapters, cache > adapter. > You ha