#nbbcljs
Very exciting nbb release today

#clojure #clojurescript #nbbcljs
July 14, 2026 at 1:51 PM
Babashka.fs is now available on Node.js (and bun, etc)! Available for CLJS, squint, nbb and directly in JS!

github.com/babashka/fs/...

#clojure #babashka #nbbcljs
July 2, 2026 at 4:23 PM
Nbb: the easiest way to script in ClojureScript on node, bun and deno

github.com/babashka/nbb

#clojure #clojurescript #nbbcljs
October 6, 2025 at 7:00 PM
https://hello-nbb.borkdude.deno.net/
Hello from nbb on Deno Deploy!
hello-nbb.borkdude.deno.net
July 15, 2026 at 8:55 AM
The nREPL server now works with deno too!

$ deno -A jsr:@babashka/nbb@1.3.202 nrepl-server

#clojure #nbbcljs
May 12, 2025 at 9:58 AM
New SCI version dropped which now supports async/await in CLJS!

And new #nbbcljs dropped which uses the newest SCI. Demo:

$ npx nbb@1.4.206

Welcome to nbb v1.4.206!
user=> (defn ^:async foo [] (let [x (await (js/Promise.resolve 1))] (inc x)))
#'user/foo
user=> (foo)
#<Promise 2>

#clojure
February 7, 2026 at 12:13 PM
Implementing JIT for SCI which compiles loops, function calls, and interop: near native speeds

$ node lib/nbb_main.js -e '(time (print (loop [i 0 j 10000000] (if (zero? j) i (recur (inc i) (dec j))))))'
10000000
"Elapsed time: 9.315083 msecs"

#clojure #babashka #nbbcljs #scittlecljs
July 14, 2026 at 7:15 AM
#nbbcljs can run on deno and now supports jsr: + npm: inline dependencies, so you don't need any config file or manually download dependencies for a single script!

#clojure #clojurescript

github.com/babashka/nbb...
May 8, 2025 at 5:09 PM
#nbbcljs also works on Android phone
#clojure #clojurescript
October 17, 2023 at 1:35 PM
It seems deno is currently the fastest at starting and executing something with #nbbcljs #clojure

$ time deno -A jsr:@babashka/nbb@1.3.202 -e '(+ 1 2 3)'
6
deno -A jsr:@babashka/nbb@1.3.202 -e '(+ 1 2 3)' 0,05s user 0,02s system 101% cpu 0,068 total
May 12, 2025 at 1:39 PM
Also since this is the first public mention of the Logseq CLI, I'd like to thank @borkdude.bsky.social for #nbbcljs. Rapid development and reuse of Logseq's core for the CLI is possible thanks to github.com/babashka/nbb
GitHub - babashka/nbb: Scripting in Clojure on Node.js using SCI
Scripting in Clojure on Node.js using SCI. Contribute to babashka/nbb development by creating an account on GitHub.
github.com
October 30, 2025 at 4:15 PM
My project updates for May and June: 19 projects updated in total!

Thank you for sponsoring my work through Clojurists Together, Github Sponsors or otherwise!

(link in reply)

#clojure #babashka #scittlecljs #nbbcljs #squintcljs
OSS updates May and June 2025
My Clojure OSS updates for May and June 2025
blog.michielborkent.nl
July 1, 2025 at 2:44 PM
Nbb (Node.js #babashka) is today two years old!
It is the SCI (Small Clojure Interpreter) tailored for scripting on Node.js.

https://github.com/babashka/nbb

#clojure #nbbcljs
July 27, 2023 at 9:57 AM
The #squintcljs nREPL also works on @bunjavascript
Here is a little demo of changing the handler for a Bun.serve application.
(The same also works with #nbbcljs of course).
github.com/squint-cljs/...
#clojure #clojurescript
November 13, 2023 at 2:24 PM
#nbbcljs 1.2.174 is now compatible with http://bun.sh due to
@jarredsumner
and other people's work! This means you can now use bun:ffi etc from a #clojure REPL! :)
May 23, 2023 at 5:12 PM