-->
Facilitate JavaScript interop using ClojureScript functions optimized for JavaScript environments
js-interop
is a ClojureScript library facilitating JavaScript interop by mirroring core Clojure functions adapted for JavaScript contexts.
get
, get-in
, assoc!
, assoc-in!
, update!
, update-in!
, select-keys
..-keyName
).^js
metadata with j/let
, j/fn
, and j/defn
for JS-specific bindings.j/push!
, j/unshift!
, j/call
, j/apply
, j/call-in
, j/apply-in
.j/obj
for literal objects, j/lit
for nested structures with support for unquote-splicing.(j/get obj :x)
(j/get obj :x default-value)
(j/get-in obj [:x :y])
(j/select-keys obj [:x :z])
(j/let [^js {:keys [x y]} obj]
...)
(j/assoc! obj :x 10)
(j/update! obj :x inc)
(j/get obj .-x)
(j/assoc! obj .-a 1)
(j/call o :someFunction 10)
(j/apply o :someFunction #js[1 2 3])
(j/obj :a 1 .-b 2)
(j/lit {:a 1 .-b [2 3]})
^js
to opt-in to JS interop in destructuring.
Add this context to your project via the
ctxs
command line integration: