scittle

craftybones 2023-05-30T05:05:12.258749Z

I want a simple editor on the browser where I can type in some cljs code for scittle to evaluate and show, a small repl really. What would people recommend? Codemirror? Seems too fancy. Something real simple with basic syntax highlighting is a good start

borkdude 2023-05-30T07:57:23.949589Z

I believe this uses codemirror 5: https://jurjanpaul.github.io/ape-cljs-playground/ This is with codemirror 6: https://babashka.org/scittle/codemirror.html

👍 1
borkdude 2023-05-30T07:58:01.920289Z

This is another project without scittle, but built on SCI: https://github.com/borkdude/cljs-showcase

ray 2023-05-30T07:59:59.504739Z

I did https://github.com/replete-repl/replete-web with codemirror. That used a self-hosted REPL but would be straightforward to get it working with scittle

2
craftybones 2023-05-30T17:10:14.982269Z

Thanks a lot!