Re: Front-end with Clojure Backend

2018-07-28 Thread Satyam Ramawat
Thanks Gerard, I am cloning templates and making up ready. On Sat, 28 Jul 2018 at 12:49 PM, Gerard Klijs wrote: > Both suggestions use hiccup, which from my experience works a lot better > then jsp. As you can include functions in the templates, where with jsp you > need a static function, decla

Re: Front-end with Clojure Backend

2018-07-28 Thread Gerard Klijs
Both suggestions use hiccup, which from my experience works a lot better then jsp. As you can include functions in the templates, where with jsp you need a static function, declare it somewhere, and only then your able to use it in jsp. Basically your HTML is 'just' data, you can have a closure f

Re: Front-end with Clojure Backend

2018-07-27 Thread Satyam Ramawat
Thanks @ Mark Engelberg Oliver Muellerklein I will try both of your solutions and can we do it with JSP ? On Sat, Jul 28, 2018 at 4:47 AM, Oliver Muellerklein < omuellerkl...@berkeley.edu> wrote: > I have worked with Gary Johnson on a Clojure backend + ClojureScript > frontend app. Gary is

Re: Front-end with Clojure Backend

2018-07-27 Thread Oliver Muellerklein
I have worked with Gary Johnson on a Clojure backend + ClojureScript frontend app. Gary is great and made this template: https://gitlab.com/lambdatronic/clojure-webapp-template It's great! I highly suggest / recommend. On Fri, Jul 27, 2018, 2:10 PM Satyam Ramawat wrote: > I want to create fron

Re: Front-end with Clojure Backend

2018-07-27 Thread Mark Engelberg
Luminus is a good way to understand how to build a full stack application in Clojure: http://luminusweb.net/ On Fri, Jul 27, 2018 at 1:33 PM, Satyam Ramawat wrote: > I want to create front-end with Clojure backend, how should I approach. > Can anyone please provide me sample project with Clojure