ClojureScript is a dialect of Clojure that compiles to JavaScript.
2
votes
0answers
66 views
Handling async in Clojure
I've defined myself a function for caching requests and their responses in a browser environment; I'm using ClojureScript.
...
1
vote
2answers
125 views
Formatting a date in ClojureScript
I want to convert strings with the iso date format (2015-08-02) to the default format of our app (2 Aug 2015) in ClojureScript. ...
1
vote
1answer
84 views
Simple POST function in ClojureScript and Node.js
Node's HTTP library provides a handy shorthand function for GET requests. Something similar doesn't exist for POST requests. I'm trying to write one in ClojureScript that compiles to node-readable ...