Stephen EmmanuelforSteph Crown Writesstephcrown.hashnode.net·Sep 19, 2022FeaturedBuilding an Application with ClojureScriptClojureScript is a Clojure compiler that generates JavaScript code. Clojure is a high-level, functional programming language that runs on the Java Virtual Machine (JVM), and has access to all Java libraries. With ClojureScript, we can write Clojure c...Discuss·22 likes·1.4K readsClojureScript
Volodymyr KozieievforVolodymyr Kozieievkozieiev.hashnode.net·Oct 13, 2022Is Clojure the only language you need?Video version https://youtu.be/oguZnsrUQBo The question Clojure is a hosted programming language. This means what you wrote in Clojure will run in an environment of another language. The most popular implementation of Clojure turns Clojure code into...Discuss·3 likesClojure
Stephen EmmanuelforSteph Crown Writesstephcrown.hashnode.net·Sep 9, 2022How to Set up A Clojure Script and Phoenix ProjectRecently I was tasked with setting up a project with ClojureScript and Phoenix. I tried to check the internet for a "how-to" but did not find an up-to-date guide on completing this setup. After some research and trials, I was finally able to get it d...Discuss·2 likes·418 readsClojureScript
Ashutosh MauryaforAshutoshashutoshmaurya.hashnode.net·Feb 11, 2023Closures in JSA closure in JavaScript is a function that has access to its outer (enclosing) function's variables and parameters even after the outer function has returned. In other words, a closure "closes over" its outer function's variables, preserving their va...Discuss·33 readsJavaScript
Paul JankowskiforClojure Hacker's blogclojurehacker.hashnode.net·Oct 22, 2022Tutorial - Material UI (MUI) and ClojureScriptHow to use Material UI in ClojureScript? With shadow-cljs and Reagent this is piece of cake: Start new project e.g.lein new reagent-frontend <myproject> Install MUI:npm install @mui/material @emotion/react @emotion/styled Now let's run the serve...Discuss·1 like·238 readsClojure
Paul JankowskiforClojure Hacker's blogclojurehacker.hashnode.net·Oct 14, 2022Best Clojure(Script) IDEsLet me share with you my personal opinion about most popular editors and IDEs in the Clojure world. VsCode and Calva + It is vscode. It is quite popular editor now, so you can have one editor for all your projects no matter the language. + Calva is h...Discuss·128 readsClojure
Volodymyr KozieievforVolodymyr Kozieievkozieiev.hashnode.net·Oct 13, 2022Is Clojure the only language you need?Video version https://youtu.be/oguZnsrUQBo The question Clojure is a hosted programming language. This means what you wrote in Clojure will run in an environment of another language. The most popular implementation of Clojure turns Clojure code into...Discuss·3 likesClojure
Paul JankowskiforClojure Hacker's blogclojurehacker.hashnode.net·Oct 9, 2022How to learn ClojureI know I know, there are thousands of such topics all over the internet - but let me describe the best resources in my opinion: [Book] Clojure for the Brave and True - great book if you have no idea about any other LISP and Clojure. Mostly what you...Discuss·85 readsClojure
Stephen EmmanuelforSteph Crown Writesstephcrown.hashnode.net·Sep 19, 2022FeaturedBuilding an Application with ClojureScriptClojureScript is a Clojure compiler that generates JavaScript code. Clojure is a high-level, functional programming language that runs on the Java Virtual Machine (JVM), and has access to all Java libraries. With ClojureScript, we can write Clojure c...Discuss·22 likes·1.4K readsClojureScript
Stephen EmmanuelforSteph Crown Writesstephcrown.hashnode.net·Sep 9, 2022How to Set up A Clojure Script and Phoenix ProjectRecently I was tasked with setting up a project with ClojureScript and Phoenix. I tried to check the internet for a "how-to" but did not find an up-to-date guide on completing this setup. After some research and trials, I was finally able to get it d...Discuss·2 likes·418 readsClojureScript
Volodymyr KozieievforVolodymyr Kozieievkozieiev.hashnode.net·Aug 21, 2022How to create a library that works with Clojure and ClojureScripthttps://youtu.be/KVWxr9dvGZ8 Clojure and ClojureScript are forms of the same language targeting different hosts - JVM and JavaScript respectively. If you are creating a library, there is a big chance that a significant part of the code will work for ...DiscussClojure
Volodymyr KozieievforVolodymyr Kozieievkozieiev.hashnode.net·Aug 17, 2022How to create and use Clojure library. Publishing to git and Clojars.Here we are going to create a Clojure library, pack it to a JAR file, deploy it to a Maven repository and make its code available from Clojure and ClojureScript projects. We will create the simplest project and will grow it step by step. At the end, ...Discuss·32 readsClojure
Volodymyr KozieievforVolodymyr Kozieievkozieiev.hashnode.net·Aug 17, 2022Clojure CLI, tools.deps, and deps.edn guideNote for readers This article was written for those who want to understand how to work with Clojure CLI (command line interface), and how to configure it with deps.edn files. There are 2 official articles on this topic: Deps and CLI Guide and Deps an...Discuss·40 readsClojure