This took me awhile to get right. I wanted to see if Node + cljs might be suitable for scripting tasks where loading the entire Clojure infrastructure would be painfully slow.
I used lein new mies-node to make the project. This works with my installed Node.js (0.10) but stopped working when I upgraded to Node 0.12, so I rolled back.
Since Node 0.10 child_process doesn’t support spawnSync like Node 0.12 does, I had to use the spawn-sync package, installed via NPM.
The resulting script runs in 330 msec from start to finish.