bindscript is antoher tool for interactive coding ClojureScript. It displays values from its bindings forms in a heads-up in the browser.
Add dependency to your project:
witek/bindscript {:mvn/version "X.Y.Z"}
Require:
[bindscript.api :refer [def-bindscript]]
Put bindscripts into any ClojureScript file. Similar to an usual let
expression:
(def-bindscript ::my-script-1
a 7
b (inc 2)
m (assoc {}
:sum
(+ a b))
v (assoc [] :k 1)
k (keyword "bind" "script"))
Let figwheel load it into your browser and bindscript display the values:
Get insights, modify your code, loop!
Copyright © 2018 Witoslaw Koczewski
Distributed under the Eclipse Public License either version 1.0 or any later version.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close