clojurescript

ClojureScript, a dialect of Clojure that compiles to JavaScript http://clojurescript.org | Currently at 1.10.879
p-himik 2020-10-31T08:46:39.440800Z

I don't know for sure but I really doubt that. TS can consume JS and CLJS produces JS - there should be no problems.

Tij 2020-10-31T12:35:46.443300Z

Hello, I have a nodejs repl server running. I can connect to it (with my terminal) and evaluate javascript. What do I need to be able to evaluate clojurescript instead? Preferably from vs code.

pez 2020-10-31T13:50:24.444600Z

@tijmenvink, if you don't mind involving Clojure in the mix, I'd recommend #shadow-cljs

2020-10-31T15:05:40.445400Z

It looks to me like random-uuid is just using rand-int under the covers - is there a secure random uuid generator for cljs?

kwrooijen 2020-10-31T19:24:26.446500Z

If you know Javascript / React, and know nothing of Clojure / Clojurescript. Where would you start? (With the goal of learning re-frame)

2020-10-31T19:35:26.449200Z

Hi @kevin.van.rooijen! You can starting to learrn Shadow-CLJS (CLJS building tool with very good interop with npm) and Reagent (React wrapper). Here you can find a free video course part: https://www.jacekschae.com/learn-reagent-free Did you already start reading the Re-frame docs ? https://day8.github.io/re-frame/

kwrooijen 2020-10-31T19:38:29.450100Z

@admin055 Thanks for the links! I'm trying to help someone else learn Clojurescript / re-frame. Is this course suitable for people that don't know any Lisp?

kwrooijen 2020-10-31T19:39:40.450700Z

And yeah, I thought the re-frame docs would be a bit intimidating since this person has no clojure knowledge yet

kwrooijen 2020-10-31T19:43:02.450900Z

These videos look really good

p-himik 2020-10-31T20:04:37.451400Z

FWIW the very first article to read should probably be this: https://clojurescript.org/guides/faq-js

6👍
kwrooijen 2020-10-31T20:08:26.451600Z

Thanks, this is really good!