Problem Assume we have a data-structure like this: (def data (atom [{:id 1 :first-name “John1” :last-name “Dow1” :age 14} {:id […]
Tag: clojurescript
Simple POST function in ClojureScript and Node.js
Problem Node’s HTTP library provides a handy shorthand function for GET requests. Something similar doesn’t exist for POST requests. I’m […]