KLIPSE is live at http://app.klipse.tech
KLIPSE layout is intentionally kept flat without any buttons.
Tweaking is done with url parameters and hotkeys.
KLIPSE configuration is done with the url parameters:
cljs_in=<cljs_code>
- initial content of theclojurescript
box (code
must be encoded properly)cljs_in.gist=<gist_id>
- load code from a gist; e.g. http://app.klipse.tech?cljs_in.gist=viebel/368d3bec58d3ec47e935ad488bafb600&eval_only=1container=1
- container more useful for UI stuff: instead of the compilation box, you have your klipse containerjs_only=1
- display onlyinput
andjs
boxeseval_only=1
- display onlyinput
,eval
andprint
boxesstatic-fns=true
- eval and transpile js code with static dispatchexternal-libs
- array of external libs to resolve the namespace dependencies. Here is an example with the gadjett library.verbose
- (default false) passed to bootstrappedeval
andcompile
functions as:verbose
optscache-buster
- (default false) when true the namespaces are loaded with a cache bustermax-eval-duration
- (default 1000) max number of 1000 seconds the code is allowed to run synchronously before being interrupted.compile-display-guard
: (default false) when true, display the anti-starvation code inside result of compilationprint-length
: (default 1000) max number of items in collections to display - useful to prevent browser stuck when evaluating infinite sequences like(range)
beautify-strings
: (default false) when evaluation result is a string - display the "interior" of the string without escaping the quotes.
Interaction with the REPL is done with hotkeys:
Ctrl-Enter
- eval and transpileCtrl-S
- create a shareable url that embeds the content of your current KLIPSE session.Ctrl-R
- reload the app with the same content (pass the content tocljs_in
url parameter).