I'm new to CoffeeScript, but I am really looking forward to writing JavaScript code in something more akin to Ruby.

What 2-3 good resources can be recommended for tutorials or screencasts to get up and running with CoffeeScript?

link|improve this question
feedback

7 Answers

up vote 19 down vote accepted

[Update: I have a book coming out from PragProg, CoffeeScript: Accelerated JavaScript Development. Also, the latest version of CoffeeScript is now 1.1.0, though it introduced few changes; mainly, it's a bugfix release.]

The official documentation at http://coffeescript.org is the only up-to-date place you're going to find. Right now, the latest release of CoffeeScript is 1.0.1. There were a lot of changes in 1.0.

Orbit linked to two other resources that are nice but dated. The tongue-in-cheek 7 Reasons You Are Gonna Hate It presentation is from way back when all assignment was done using : instead of =. The NetTuts+ tutorial was written when the latest release was 0.9.6 and, I think, doesn't touch on anything that's changed since then (such as classes).

So, you might want to go through the NetTuts+ tutorial, then the official docs, then start reading some real-world source code. See http://github.com/jashkenas/coffee-script/wiki/In-The-Wild for a listing, or look at some of the recent posts by @CoffeeScript on Twitter (which I maintain)—when people are doing interesting things with CoffeeScript, chances are that I'm tweeting about it.

link|improve this answer
Thanks so much for the great answer. Much obliged. – tbaums Feb 26 '11 at 5:15
4  
Peepcode has also released a screencast on CoffeeScript. They produce excellent work, so I'm sure it'd be worth checking out: peepcode.com/products/coffeescript – coreyward Jun 19 '11 at 1:27
Did them too and these are awesome! If you're beginner and not familiar with command line I'd suggest CodeSchool mentioned below. If you're familiar with JS or other languages I'd recommend official site and PragProg's book for deeper knowledge. – YogiZoli Mar 26 at 17:28
feedback

More has become available:

I made the last one. Also have a look at the CoffeeScript Cookbook.

link|improve this answer
thanks! much obliged. – tbaums Jun 16 '11 at 10:04
feedback

Rocking Out With CoffeeScript, a CoffeeScript tutorial, and naturally the documentation.

But beware of CoffeeScript -- 7 Reasons You Are Totally Gonna Hate It.

link|improve this answer
Thanks for the response @orbit! – tbaums Feb 26 '11 at 5:17
feedback

Found a great "getting started" CoffeeScript Screencast here: http://screencasts.org/episodes/introduction-to-coffeescript

link|improve this answer
That link isn't working for the video, or is behind some kind of paywall? – DOK Dec 10 '11 at 18:36
Hey, I just tested it. It works, there's an ad but at 27 seconds the tutorials starts. – RedRory Dec 11 '11 at 1:30
Aha, that explains it. Firefox AdBlock is blocking it. – DOK Dec 11 '11 at 18:52
feedback

Ryan Bates has a great CoffeeScript screencast: "CoffeeScript Basics" on Railscasts

link|improve this answer
feedback

My recommendation is to check out CodeSchool's course on Coffeescript. It has videos and in-browser exercises. It'll cost to do the whole course but I think it's worth it.

link|improve this answer
feedback

i believe guys at peepcode made something about coffeescript let me see ,Yeeeep ! here is the link : https://peepcode.com/products/coffeescript

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.