I'd love to use CoffeeScript, but converting all my JavaScript files doesn't seem like a task I should have to do by hand...

link|improve this question
1  
At the time of this question, coffeescript hasn't hit to version 1 yet, and there were major changes in 0.9, so i think most conversion authors are going to wait. The exercise of converting from javascript to coffeescript was actually very valuable to my coffeescript ability, so consider doing a few by hand, even if a tool can do it. – PandaWood Nov 3 '10 at 0:09
CoffeeScript compiles down to JavaScript anyway... why bother ? – marcof Feb 15 at 19:11
feedback

6 Answers

up vote 14 down vote accepted

I brought this back guys, it's at http://mindynamics.github.com/js2cs

Sorry about this downtime, we were ungoing changes.

Thanks for the link!

link|improve this answer
3  
Note that js2cs is (as of this writing and CoffeeScript 1.0.1) sorely out of date; for instance, it uses the : assignment syntax that CoffeeScript used to have rather than =. Haven't seen a better tool yet, though... – Trevor Burnham Mar 8 '11 at 16:10
5  
Still quite out of date. Rico Sta Cruz's is much better maintained. – Stephen Belanger Jun 15 '11 at 23:21
feedback

Here's another:

http://js2coffee.org/

You can also convert CoffeeScript to JS (as on the CoffeeScript site) - it's nice to have it all in one place.

link|improve this answer
3  
This one is the best out of all those mentioned. I use it daily. – balupton Jun 13 '11 at 9:38
This is great.. instantly bookmarked – LondonGuy Mar 18 at 14:47
feedback

You could use CoffeeScript for all your new scripts. I mean, seeing as CoffeeScript interpreters turn it back into JavaScript, you could just keep your old JavaScript as-is and leave it while you spend your time on writing new CoffeeScript.

link|improve this answer
feedback

https://github.com/mindynamics/js2cs

link|improve this answer
This is the only attempt I've seen; you can try it at jsilver.github.com/js2cs/example.html. Note the limitations listed in the README; also, it hasn't been updated for CoffeeScript 0.9, which introduced some major syntactic changes. – Trevor Burnham Aug 19 '10 at 12:05
1  
"Page does not exist!" – RafaƂ Sobota Sep 17 '10 at 17:07
feedback

http://js2coffee.org/

link|improve this answer
feedback

I had a quick look around and I don't think it's possible, it seems like CoffeeScript converts it's code into compiled JavaScript code, so you should be able to do small chucks at a time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.