clojurescript-unraveled icon indicating copy to clipboard operation
clojurescript-unraveled copied to clipboard

An open source book about ClojureScript

Results 30 clojurescript-unraveled issues
Sort by recently updated
recently updated
newest added

In order to get the code to work correctly, I needed to add: :asset-path "js/leapyears"

bug

Hi! In the first example of the [core.async](https://funcool.github.io/clojurescript-unraveled/#channels) section the code shows the following: ```clojure (put! ch 42) ;; Got a value: 42 ;; => 42 ``` > Note that...

Hello! Quickly went through the 2nd edition, it's great, thank you! IMO It would be valuable for readers to know about `cljs.main`, perhaps a couple of sentences with an example...

Just wanted to share how I got the HTML to build on macOS Mojave 10.4.5. Dependencies: * ruby 2.3.8 (I used [asdf-ruby](https://github.com/asdf-vm/asdf-ruby) to install it then [set the asdf ruby...

The use of http://www.clojurescript.io/ is recommended, which is great. But many examples in the first tutorial contain the println function, which does not work on this site. Is there a...

I am trying to lower the thresholds of setting up a Clojurescript development environment with an extension to VS Code I call [Calva](https://marketplace.visualstudio.com/items?itemName=cospaia.clojure4vscode). I could write a first version of...

I disagree with this statement: > 3.7.2. Blocks [...] > A side effect is something that is not necessary for the return value. 1. Some side effects might also affect...

:require-macros explicitly tells compiler to look for clj files, but with other forms of require compiler first requires cljs files

enhancement