why? seriously, is this the point that modern tooling has gotten to where for no apparent reason it has a node dependency?
Closh – Bash-like shell based on Clojure
11–20 of 138 posts
Re: Closh – Bash-like shell based on Clojure
#12> npm install -g lumo-cljs closh why? seriously, is this the point that modern tooling has gotten to where for no apparent reason it has a node dependency?
Re: Closh – Bash-like shell based on Clojure
#13> npm install -g lumo-cljs closh why? seriously, is this the point that modern tooling has gotten to where for no apparent reason it has a node dependency?
Node is the runtime for ClojureScript. The whole shell runs in Node.
Re: Closh – Bash-like shell based on Clojure
#14Author here, thanks for posting. The project is still very early in the development and there is a lot of work to be done to make it ready for daily use. I would appreciate any feedback. What are the less known features of existing shells you really like? What things would you change about existing shells if you could?
This looks great, though, and I can't wait to try it out.
Re: Closh – Bash-like shell based on Clojure
#15Author here, thanks for posting. The project is still very early in the development and there is a lot of work to be done to make it ready for daily use. I would appreciate any feedback. What are the less known features of existing shells you really like? What things would you change about existing shells if you could?
Is there a way I can automatically import libraries? Also, what's the current status on autocompletion features? By the way, very nice work!
Check out the example: https://github.com/dundalek/closh/blob/master/doc/guide.md#c...
Re: Closh – Bash-like shell based on Clojure
#16Earlier quoted context omitted.
Node is the runtime for ClojureScript. The whole shell runs in Node.
what's the tradeoff of clojurescript over native clojure? wouldn't the java clojure runtime be much faster?
Re: Closh – Bash-like shell based on Clojure
#17Author here, thanks for posting. The project is still very early in the development and there is a lot of work to be done to make it ready for daily use. I would appreciate any feedback. What are the less known features of existing shells you really like? What things would you change about existing shells if you could?
I really like this idea and I really like Clojure. Though I'm curious about performance. And do you know if anyone is doing something similar with Racket? (Looks like there is a Common Lisp shell http://www.cliki.net/CLISP-Shell )
Re: Closh – Bash-like shell based on Clojure
#18Re: Closh – Bash-like shell based on Clojure
#19Earlier quoted context omitted.
Node is the runtime for ClojureScript. The whole shell runs in Node.
what's the tradeoff of clojurescript over native clojure? wouldn't the java clojure runtime be much faster?
Theres no meaningful reason to use cljs other than to avoid java or if the java runtime isn’t available (eg. browser).