dvcrn / markright

➡ Electron powered markdown editor with live preview
GNU General Public License v3.0
914 stars 55 forks source link

Question: How to connect to the CLJS Repl #38

Closed st32lthx closed 8 years ago

st32lthx commented 8 years ago

Was wondering how I can connect to the CLJS Repl in development. Thanks.

dvcrn commented 8 years ago

Hi,

there are 2 build commands available for compiling markright, 1 for the backend, 1 for the frontend. The backend task (main-dev) does not have a interactive REPL yet. The frontend task (ui-dev) however does. Everything after [:repl-ready] once a client is connected is a full REPL. @thheller just didn't add prompt input or similar indicators to shadow-build yet.

Once a browser is connected you should be able to dump clojurescript code into it.

st32lthx commented 8 years ago

awesome, thanks !