Function: cider-check-node-requirements

cider-check-node-requirements is a byte-compiled function defined in cider.el.

Signature

(cider-check-node-requirements)

Documentation

Check whether we can start a Node ClojureScript REPL.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider-check-node-requirements ()
  "Check whether we can start a Node ClojureScript REPL."
  (cider-verify-piggieback-is-present)
  (unless (executable-find "node")
    (user-error "Node.js is not present on the exec-path.  Make sure you've installed it and your exec-path is properly set")))