Re: more minimal clojurescript intro/app

2016-06-11 Thread 'Lee' via Clojure
Thanks Colin -- that does look very cool, and I think I will indeed find it very useful if this limitation is overcome: "Requiring custom clojure[script] libraries in a klipse snippet is not yet available." If I understand correctly, this means that you can't yet use it to provide interactions

Re: more minimal clojurescript intro/app

2016-06-11 Thread Colin Fleming
Hi Lee, Here's another recent interesting post: http://blog.klipse.tech/clojure/2016/06/07/klipse-plugin-tuto.html. This looks like it might be very useful for you. Cheers, Colin On 12 June 2016 at 11:03, 'Lee' via Clojure wrote: > > Just an update on this and

Re: more minimal clojurescript intro/app

2016-06-11 Thread 'Lee' via Clojure
Just an update on this and thanks: Several people provided helpful pointers, leading me on interesting paths and teaching me about cool things like hoplon. The thing that most easily and fully solved my problem was: https://github.com/fasiha/re-simple-term. Ahmed Fasih (fasiha) was super

Re: more minimal clojurescript intro/app

2016-04-13 Thread William la Forge
I've never learned javascript and had hoped that clojurescript would make it easy. Much to my delight, I found that hoplon let me write everything in a single language and not have to worry about how html/js are joined. Love Hoplon! https://github.com/hoplon/hoplon -- You received this

Re: more minimal clojurescript intro/app

2016-04-13 Thread 'Alan Forrester' via Clojure
On 13 Apr 2016, at 04:18, 'Lee' via Clojure wrote: > Thanks again to Alan, Pedro, and Colin for the input on this. > > I found the modern-cljs tutorial most helpful, and was able to put the > compiled Hello World example on a server and then run it from my browser. >

Re: more minimal clojurescript intro/app

2016-04-12 Thread 'Lee' via Clojure
Thanks again to Alan, Pedro, and Colin for the input on this. I found the modern-cljs tutorial most helpful, and was able to put the compiled Hello World example on a server and then run it from my browser. Victory! It seems like I am very close to doing what I want, which is to put an

Re: more minimal clojurescript intro/app

2016-03-27 Thread Lee Spector
Thanks Alan, Pedro, and Colin! All of those look like good starting points, and I will explore them soon. -Lee > On Sat, Mar 26, 2016 at 8:06 AM, Lee Spector > > wrote: > > Can anybody tell me or point me to a resource that will tell me how to get my > Clojure

Re: more minimal clojurescript intro/app

2016-03-27 Thread Colin Fleming
In terms of learning a minimum about how ClojureScript itself works, I'd recommend starting from the Quick Start . It uses no external tooling so there's no house of cards effect which can be discouraging for new users. You'll end up with

Re: more minimal clojurescript intro/app

2016-03-26 Thread Pedro Santos
I've done somehting like that: https://medium.com/@donbonifacio/running-clojure-code-on-javascript-e1f37071e69e#.mmasgmo7q On Saturday, 26 March 2016, Alan Thompson wrote: > Have you seen this tutorial? https://github.com/magomimmo/modern-cljs > Alan > > On Sat, Mar 26,

Re: more minimal clojurescript intro/app

2016-03-26 Thread Alan Thompson
Have you seen this tutorial? https://github.com/magomimmo/modern-cljs Alan On Sat, Mar 26, 2016 at 8:06 AM, Lee Spector wrote: > Hi all, > > I have a pure Clojure program and I would like to make it run in the > browser on client machines. It has no dependencies other

more minimal clojurescript intro/app

2016-03-26 Thread Lee Spector
Hi all, I have a pure Clojure program and I would like to make it run in the browser on client machines. It has no dependencies other than Clojure, it does no Java interop, and it has no GUI. There's no database, no user interaction (except for starting the program), and no networking. It just