Chaos Rules
Chaos Rules

Reputation: 520

How do I start a repl inside of a ClojureScript page?

I have a single page application that consists of 4,000 lines of ClojureScript. The page is served up from a Clojure Web Server and is running inside of my browser. What I want to do is to start a REPL inside of my page and connect to it from outside of my page. So, do we have any browser hosted REPL's?

Upvotes: 2

Views: 85

Answers (1)

Mike Fikes
Mike Fikes

Reputation: 3527

A lot of the basics are covered in the ClojureScript wiki here.

As of 2014 two popular browser REPLs are:

A simplified façade on top of Weasel is simple-brepl.

Upvotes: 3

Related Questions