#Clojurescript
It's some kind of "tiny" magic to import your own web component and use it together with others in a web project. Just include the JS file and add the html tag. (in my case [:my-component] bc #Clojurescript). That's the way! #webdev
November 11, 2025 at 2:46 PM
A mashup between reagami and webcomponents. I don't know why you would do this, but you can!

#clojure #clojurescript #squintcljs

squint-cljs.github.io/squint/?src=...
November 10, 2025 at 12:39 PM
Minigraph progress: multiple selection and drag selection. https://github.com/apossiblespace/minigraph #clojure #clojurescript
November 8, 2025 at 11:05 PM
pr-str, prn, etc now print EDN instead of JSON in squint, as you can see in this beautiful draggable button demo

#clojure #clojurescript #squintcljs

squint-cljs.github.io/squint/?src=...
November 8, 2025 at 10:45 AM
In edamame you can intercept the parsing of maps, so you could even return ordered maps for custom types like js/Map

user=> (e/parse-string "#js/map {:a 1 :b 2}" {:map (fn [& m] m) :readers {'js/map (fn [x] (prn :x x))}})
:x (:a 1 :b 2)

github.com/borkdude/eda...

#clojure #clojurescript
GitHub - borkdude/edamame: Configurable EDN/Clojure parser with location metadata
Configurable EDN/Clojure parser with location metadata - borkdude/edamame
github.com
November 8, 2025 at 10:22 AM
Did I ever tell y'all about this (possibly insane) thing I did to embed #clojurescript in a webpage using a #wordpress plugin? It works!! #programming https://sr.ht/~earneson/playfair-key-generator/
playfair-key-generator: Generate a key for the Playfair cipher from any text (a WordPress plugin)
sr.ht
November 7, 2025 at 6:44 PM
Out of band DOM updating (manually messing with DOM elements) counter example in Reagami

#clojure #clojurescript #squintcljs

squint-cljs.github.io/squint/?src=...
November 7, 2025 at 1:26 PM
Build a ClojureScript native desktop app in 5 minutes with NeutralinoJS.

youtu.be/uEVo8rqJgyw
Build a ClojureScript native desktop app in 5 minutes
YouTube video by mccormix
youtu.be
November 7, 2025 at 7:34 AM
*of ClojureScript.
November 6, 2025 at 7:52 PM
opening random languages websites and what my bank funds clojure
November 5, 2025 at 5:05 PM
The on-render hook in reagami just got more awesome. You can now pass data from mount to update to unmount, by just returning data!

#clojure #clojurescript #squintcljs

squint-cljs.github.io/squint/?src=...
November 5, 2025 at 11:12 AM
Reagami now has an on-render hook that you can use to mount/update/mount a 3rd party JS component.

#clojure #clojurescript #squintcljs

Demo:

squint-cljs.github.io/squint/?src=...
Squint
squint-cljs.github.io
November 3, 2025 at 3:45 PM
Here are my September and October 2025 OSS highlights and updates.

blog.michielborkent.nl/oss-updates-...

Thanks for supporting my work!
And perhaps see you at the Conj?

#clojure #clojurescript #squintcljs #cljKondo #babashka
November 3, 2025 at 10:46 AM
State of ClojureScript 2025 Survey is live state-of-clojurescript.com If you ever wanted to know what's happening in cljs world, and using the language at work or for hobby projects, fill out the survey. And share it with others! Results will be shared in January next year.
State of ClojureScript 2025 Survey
state-of-clojurescript.com
October 30, 2025 at 1:28 PM
Edamame, a configurable parser for EDN and Clojure code now supports ClojureCLR! Thanks to Ambrose Bonnaire-Sergeant.

github.com/borkdude/eda...

#clojure #clojurescript #clojureclr
GitHub - borkdude/edamame: Configurable EDN/Clojure parser with location metadata
Configurable EDN/Clojure parser with location metadata - borkdude/edamame
github.com
October 28, 2025 at 7:10 PM
Reagami, my copy-pastable Reagent-without-React-like lib was ported to CLJS (minimal changes needed) and now can even run in a SCI:

babashka.org/sci.configs/...

You can also run/w regular CLJS, maybe interesting with :lite. Git repo: github.com/borkdude/rea...

#clojure #clojurescript #squintcljs
SCI Playground
babashka.org
October 26, 2025 at 1:00 PM
A blog post about a Reagent-like library with zero dependencies in less than 100 LOC: Reagami

blog.michielborkent.nl/reagami.html

You can find the repo here: github.com/borkdude/rea...

#clojure #clojurescript #squint
Reagami: a Reagent-like library in less than 100 lines of Squint CLJS
blog.michielborkent.nl
October 24, 2025 at 7:51 PM
Boring crud example with a 100 line Reagent-like app

#clojure #clojurescript #squint

squint-cljs.github.io/squint/?src=...
October 24, 2025 at 3:15 PM
LOL, I made a manual hiccup to DOM renderer + patching algorithm, 3.6kb zipped
I bet it won't work for most UIs but simple crud apps, probably good enough.

#squint #clojurescript #clojure

squint-cljs.github.io/squint/?src=...
October 24, 2025 at 11:21 AM