Skip to content

Upgradable self hosted clojurescript repl

Notifications You must be signed in to change notification settings

xyhp915/cljs-js-repl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

cljs-js-repl

An effort to make self-hosted cljs repls upgradeable.

To achieve this goal some subgoals must be met:

  • input stream abstraction (done)
  • async reader (done)
  • dynamic binding conveyance (done)
  • expose eval (somehow done)

Hopefully some of this work will find its way into lumo/plank or clojurescript proper.

Usage

(with lumo)

cljs.user=> (require '[net.cgrand.lumo.socket-repl :as r])
nil
cljs.user=> (r/start-server 5678)
#object[Server [object Object]]

Then from another terminal:

~$ nc localhost 5678
cljs.user=>(require '[net.cgrand.cljs.js.repl.main :as m])
nil
cljs.user=>(m/repl :eval r/eval
                   :prompt #(print"nested=>")
                   :read (fn [rp re cb]
                           (m/repl-read rp re 
                              (fn [form e]
                                (cb ({'exit re} form form) e)))))
nested=>nested=>true
12 ;input
12
nested=>(+ 2 3)
5
nested=>exit
cljs.user=>

License

Copyright © 2017 Christophe Grand

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

About

Upgradable self hosted clojurescript repl

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Clojure 100.0%