Re: Latest web framework for clojure

2014-03-01 Thread Devin Walters
Have you checked out Http://hoplon.io? '(Devin Walters) > On Feb 28, 2014, at 12:55, Daniel wrote: > > Long story short. You should be learning Pedestal, but the app component is > "on pause" at the moment. My advice is to learn pedestal-service and Om. > When Pedestal-app gets going again,

Latest web framework for clojure

2014-02-28 Thread Daniel
Long story short. You should be learning Pedestal, but the app component is "on pause" at the moment. My advice is to learn pedestal-service and Om. When Pedestal-app gets going again, learning Om will have given you a good context for transitioning to Pedestal 100%. -- You received this mes

Re: Latest web framework for clojure

2014-02-28 Thread Islon Scherer
If you are learning go with a simple approach (compojure + http-kit + hiccup for example). If you already know clojure I recommend going with some library that provide everything as data, specially the routes, as the function composition approach of compojure only gets you so far (been there).

Re: Latest web framework for clojure

2014-02-28 Thread xavi
I would recommend this combination of libraries: - Compojure - lib-noir - Enlive and Enfocus, for server-side and client-side templating respectively (I've also used Hiccup, but I prefer Enlive/Enfocus because with these, templates are pure HTML; I prefer them even for solo projects, but I woul

Re: Latest web framework for clojure

2014-02-26 Thread Moritz Ulrich
Om is well-suited to handle the UI-part for you. It doesn't do any server communication or forces you into any particular programming style or project layout. On Thu, Feb 27, 2014 at 2:35 AM, Mark Engelberg wrote: > As far as I can tell, neither luminus nor caribou are well-suited to > building,

Re: Latest web framework for clojure

2014-02-26 Thread Mark Engelberg
As far as I can tell, neither luminus nor caribou are well-suited to building, for example, interactive "web apps" like this web-based chat room which serves as the "Hello World" for the Opa web framework: https://github.com/MLstate/opalang/wiki/Hello%2C-chat Is this the kind of thing that Pedesta

Re: Latest web framework for clojure

2014-02-26 Thread Chris Kuttruff
+1 to this... I've set up a basic site with these basic tools (jetty instead of http-kit for development simplicity with lein ring). Couldn't be any simpler to get going, and it's really nice to have everything explicitly namespaced... you can just organize things how want. Also, I would recom

Re: Latest web framework for clojure

2014-02-26 Thread Moritz Ulrich
In addition to all the other message here please note, that it's very helpful to build a site with just http-kit, hiccup and compojure, which are all three independent components. This gives you the freedom to structure your application however you like without getting in your way like many framewo

Re: Latest web framework for clojure

2014-02-26 Thread Josh Kamau
If you are writting blog-like application , check out caribou http://caribou.github.io/caribou/docs/outline.html On Wed, Feb 26, 2014 at 9:44 PM, Curtis Gagliardi < gagliardi.cur...@gmail.com> wrote: > If you're interested in the url-generation and data-based routing, there > are some Compojure

Re: Latest web framework for clojure

2014-02-26 Thread Curtis Gagliardi
If you're interested in the url-generation and data-based routing, there are some Compojure competitors like Bidi which have those features without bringing on something as large as Pedestal: https://github.com/juxt/bidi (the readme has a nice comparison chart). On Tuesday, February 25, 2014 1

Re: Latest web framework for clojure

2014-02-25 Thread Jan Herich
It depends also on your requirements. For example if you want your app to work in many deployment scenarios (standalone Jetty or Tomcat, J2EE web containers...) and you may have to use servlet 3.0 API asynchronous features, nothing beats pedestal currently. The concept of interceptors is lit

Re: Latest web framework for clojure

2014-02-25 Thread The Dude (Abides)
I would also recommend Luminus as a user friendly start you can generate a new project with Selmer for views (Django style), authentication, migrations and db persistence out the gate with either mysql, postgres, mongo (or H2 as default if you select neither) and Korma as db dsl. It will give y

Re: Latest web framework for clojure

2014-02-25 Thread JPH
On 02/26/2014 09:13 AM, Aravindh S wrote: > Hi All, >I have been reading clojure for sometime now. I am at a point where I > want to learn a web framework. I see many options available for clojure > where few are built upon others. So if I am to learn one, which framework > does the communit

Re: Latest web framework for clojure

2014-02-25 Thread Gary Trakhman
Luminus is a batteries-included leiningen project template that includes compojure and other things to get started. http://www.luminusweb.net/ On Tue, Feb 25, 2014 at 8:18 PM, haosdent wrote: > Maybe you could try compojure. > > > On Wed, Feb 26, 2014 at 9:13 AM, Aravindh S wrote: > >> Hi Al

Re: Latest web framework for clojure

2014-02-25 Thread haosdent
Maybe you could try compojure. On Wed, Feb 26, 2014 at 9:13 AM, Aravindh S wrote: > Hi All, >I have been reading clojure for sometime now. I am at a point where I > want to learn a web framework. I see many options available for clojure > where few are built upon others. So if I am to learn

Latest web framework for clojure

2014-02-25 Thread Aravindh S
Hi All, I have been reading clojure for sometime now. I am at a point where I want to learn a web framework. I see many options available for clojure where few are built upon others. So if I am to learn one, which framework does the community recommend? Thanks Aravindh.S -- You received t