joker
babashka
joker | babashka | |
---|---|---|
20 | 123 | |
1,646 | 4,080 | |
- | 0.6% | |
6.7 | 9.2 | |
3 months ago | 7 days ago | |
Go | Clojure | |
Eclipse Public License 1.0 | Eclipse Public License 1.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
joker
- Glojure: Clojure interpreter hosted on Go, with extensible interop support
-
Rye Language
A similar language is Joker (https://github.com/candid82/joker), Go based, Clojure syntax. I've been using it for years as a general purpose scripting language and Clojure code linter and formatter - it's exceptional.
It doesn't integrate non-Joker Go code as far as I know.
- Joker is a small interpreted dialect of Clojure written in Go (Spotted this on HackerNews and wanted to share it here :D )
- Joker is a small interpreted dialect of Clojure written in Go
-
Are there smaller Clojure-esque Lisps available ?
There’s also joker. Haven’t used it but I’ve known about it for a while. Bills itself as a Clojure-like built with Go.
-
Looking for programming languages created with Go
There is also joker. A Clojure interpreter written in Go.
- Lisp in 99 lines of C and how to write one yourself [pdf]
- Joker: Small Clojure interpreter, linter and formatter
-
ClojureDart is live!
See Joker perhaps: https://github.com/candid82/joker
babashka
-
Tour of Hell
Good reminders; just not readily seeing Babashka (Clojure through GraalVM) so mentioning here for sake of sexp closure.
https://github.com/babashka/babashka
-
Clojure 1.12.0 is now available
> Does any of this release help with startup time?
Clojure (and indirectly Java) was never created with "fast startup speed" in mind. This is why things like `add-lib` (that was added in this release) is so useful, because you start your developing session once, and it stays open until you either have to restart your computer or done developing the project.
Then the typical deployment target is either "Push this .jar to a server somehow, start the process and let it run" or "User double-clicks executable, waits for application to be ready".
If you really need fast startup, you can go through something like https://github.com/ionutbalosin/faster-jvm-start-up-techniqu...
Or if you're fine with slightly worse runtime performance, give https://github.com/babashka/babashka a try
Finally, if you're OK with JavaScript you could give ClojureScript a try, has fast startup (as fast as NodeJS I suppose) but yeah, it's JavaScript.
But overall, Clojure/Java isn't optimized for the use-case of "Start process for each request, stop process once processed" so I'm guessing you'll face an uphill battle there.
-
CIEL Is an Extended Lisp
You should meet this nice https://github.com/babashka/babashka !
It is Clojure written in Clojure compiled to native via GraalVM.
-
Makefiles for Web Work (2022)
A bit late to the party but have you heard of or tried babashka? It's kinda the nuclear option but it might fit your use case.
https://babashka.org/
- Clojure Desktop UI Framework
- Common Lisp for Shell Scripting
-
Try Clojure
Check out Babashka. It's a single binary that runs Clojure without a JVM. It also starts up really fast and uses a lot less memory: https://github.com/babashka/babashka
That said, there are reasons you may want to use the JVM Clojure later. It might be interesting to read the replies to another poster with similar concerns about the JVM: https://news.ycombinator.com/item?id=40445415
-
A Tour of Lisps
It also gives you access to Babashka if you want Clojure for other use-cases where start-up time is an issue
https://babashka.org/
- Babashka: Fast native Clojure scripting runtime
-
What's the value proposition of meta circular interpreters?
I've tried researching this myself and can't find too much. There's this project metaes which is an mci for JS, and there's the SCI module of the Clojure babashka project, but that's about it. I also saw Triska's video on mci but it was pretty theoretical.
What are some alternatives?
janet - A dynamic language and bytecode vm
graalvm-clojure - This project contains a set of "hello world" projects to verify which Clojure libraries do actually compile and produce native images under GraalVM.
nbb - Scripting in Clojure on Node.js using SCI
planck - Stand-alone ClojureScript REPL
malli - High-performance data-driven data specification library for Clojure/Script.
lumo - Fast, cross-platform, standalone ClojureScript environment
clojure-lsp - Clojure & ClojureScript Language Server (LSP) implementation
clojerl - Clojure for the Erlang VM (unofficial)
racket - The Racket repository
rich4clojure - Practice Clojure using Interactive Programming in your editor
hy - A dialect of Lisp that's embedded in Python