Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We're using a particular jQuery plugin written in CoffeeScript @ work and I'm desperately hoping I can convert the project into somewhat normal looking JS. The library looks like it's structured really well (good OOP practices... I think), but I'd really like it if I could explore it's source code without having to learn all the tricks that CoffeeScript entails.

The project I'm referring to is Annotator, and although it is documented, I just can't seem to get everything I want from it's wiki pages.

Thanks in advance!

share|improve this question
Coffee script outputs valid javascript, but it's not meant to be human friendly. – Chris May 4 '12 at 1:20

3 Answers

up vote 3 down vote accepted

Compiling CoffeeScript into JavaScript usually results in JS that is fairly readable. You can convert snippets on the fly on the "Try CoffeeScript" tab of the CoffeeScript homepage, or via the CoffeeScript command line tool.

On a different but slightly related note, if you know JavaScript, a perusal of the CoffeeScript homepage will probably give you enough understanding of CoffeeScript to read CoffeeScript sources fairly easily.

share|improve this answer
Yeah, coffeescript is not that tricky – PandaWood May 4 '12 at 12:10

There's also this online compiler http://js2coffee.org/ that can convert coffeescript to and from javascript

share|improve this answer

Your best bet is to convert confeescript into JavaScript using their compiler, once you have that - you can go ahead and structure the JavaScript according to your style guide.

Hope that helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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