Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 492 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 492 Bytes

How to start a ClojureScript Node REPL

MacOS

  1. Make sure you have node installed:
brew install node
  1. Start the REPL:
clj -Sdeps '{:deps {org.clojure/clojurescript {:mvn/version "RELEASE"}}}' -M -m cljs.repl.node

Windows

WARNING: Do not use on MacOS. Use the command above.

Here we need to do some additional escaping like this:

clj -Sdeps '{:deps {org.clojure/clojurescript {:mvn/version \"RELEASE\"}}}' -M -m cljs.repl.node