Building a Lisp to Javascript compiler
1–10 of 12 posts
Re: Building a Lisp to Javascript compiler
#2Did you know that Clojurescript can run on node.js? https://github.com/michaelsbradleyjr/node-clojurescript
Cool project though!
Re: Building a Lisp to Javascript compiler
#3Re: Building a Lisp to Javascript compiler
#4"So, I decided to implement a simple version of Clojure that compiles to Javascript and can be run on top of nodejs." Did you know that Clojurescript can run on node.js? https://github.com/michaelsbradleyjr/node-clojurescript Cool project though!
Closure does a great job in static analysis. It's not obvious, but Clojure's library is HUGE and has to be pruned of unused resources.
On the other hand, it's not very convenient for the developer because Closure's job takes a LONG time. I guess this is where this project comes in.
Re: Building a Lisp to Javascript compiler
#5"So, I decided to implement a simple version of Clojure that compiles to Javascript and can be run on top of nodejs." Did you know that Clojurescript can run on node.js? https://github.com/michaelsbradleyjr/node-clojurescript Cool project though!
The compilation step completely defeats the point of rapid prototyping in Node.js. I'm really used to just modifying my .coffee files to get the resulting .js files compiled instantly and transparently to me. Closure does a great job in static analysis. It's not obvious, but Clojure's library is HUGE and has to be pruned of unused resources. On the other hand, it's not very convenient for the developer because Closur…
Re: Building a Lisp to Javascript compiler
#6Re: Building a Lisp to Javascript compiler
#7Earlier quoted context omitted.
The compilation step completely defeats the point of rapid prototyping in Node.js. I'm really used to just modifying my .coffee files to get the resulting .js files compiled instantly and transparently to me. Closure does a great job in static analysis. It's not obvious, but Clojure's library is HUGE and has to be pruned of unused resources. On the other hand, it's not very convenient for the developer because Closur…
I'm working on a clojurescript project right now that compiles to 80K lines of javascript (using the most basic compilation level during development). In my actual workflow I've found that the compilation takes under 250ms each time. I have it auto-compiling every time I save the file using the lein cljsbuild plugin and it's near instant as far as I'm concerned.
Re: Building a Lisp to Javascript compiler
#8Earlier quoted context omitted.
The compilation step completely defeats the point of rapid prototyping in Node.js. I'm really used to just modifying my .coffee files to get the resulting .js files compiled instantly and transparently to me. Closure does a great job in static analysis. It's not obvious, but Clojure's library is HUGE and has to be pruned of unused resources. On the other hand, it's not very convenient for the developer because Closur…
I'm working on a clojurescript project right now that compiles to 80K lines of javascript (using the most basic compilation level during development). In my actual workflow I've found that the compilation takes under 250ms each time. I have it auto-compiling every time I save the file using the lein cljsbuild plugin and it's near instant as far as I'm concerned.
Re: Building a Lisp to Javascript compiler
#9Earlier quoted context omitted.
I'm working on a clojurescript project right now that compiles to 80K lines of javascript (using the most basic compilation level during development). In my actual workflow I've found that the compilation takes under 250ms each time. I have it auto-compiling every time I save the file using the lein cljsbuild plugin and it's near instant as far as I'm concerned.
Do you mind giving a quick rundown of how you set up your environment, or at least a point in the right direction?
This long-running program keeps the same jvm running for all the compiles, and lets you iterate more quickly.
Re: Building a Lisp to Javascript compiler
#10Earlier quoted context omitted.
Do you mind giving a quick rundown of how you set up your environment, or at least a point in the right direction?
The most barebones version is very simple: lein has a plugin called lein-cljsbuild. In your project.clj there is a way to specify the directories this program needs to watch for file changes. lein cljsbuild has an option "auto" which activates the directory watcher and automatically recompiles the cljs files when one of them changes. This long-running program keeps the same jvm running for all the compiles, and lets…