Function: cider-jack-in-cljs

cider-jack-in-cljs is an autoloaded, interactive and byte-compiled function defined in cider-jack-in.el.

Signature

(cider-jack-in-cljs PARAMS)

Documentation

Start an nREPL server for the current project and connect to it.

PARAMS is a plist optionally containing :project-dir, :jack-in-cmd and
:cljs-repl-type (e.g. shadow, node, figwheel, etc).

With the prefix argument, allow editing of the jack in command; with a double prefix prompt for all these parameters.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-jack-in.el
;;;###autoload
(defun cider-jack-in-cljs (params)
  "Start an nREPL server for the current project and connect to it.
PARAMS is a plist optionally containing :project-dir, :jack-in-cmd and
:cljs-repl-type (e.g. `shadow', `node', `figwheel', etc).

With the prefix argument,
allow editing of the jack in command; with a double prefix prompt for all
these parameters."
  (interactive "P")
  (cider--with-cljs-jack-in-deps
    (let ((params (cider--update-params params)))
      (cider--start-nrepl-server
       params
       (lambda (server-buf)
         (cider-connect-sibling-cljs params server-buf))))))