What are my restrictions if I want to code node.js and use CoffeeScript? Can I do anything I'd be able to do in JS?

Thanks

link|improve this question

69% accept rate
feedback

6 Answers

up vote 41 down vote accepted

Yes, CoffeeScript simply compiles into pure JS, making it completely compatible with node.js.

To run CoffeeScripts on node, you can either:

  • Type coffee -c example.coffee to compile, followed by node example.js to run the compiled JS.
  • Simply type coffee example.coffee
link|improve this answer
Thanks! ANy good tutorials that you'd recommend? thanks again, – donald Jan 13 '11 at 12:21
4  
@donald, you're welcome. Are you after tutorials for CoffeeScript or for Node? CoffeeScript's website pretty much explains all. As for Node, DailyJS's series is the most comprehensive: dailyjs.com/tags.html#lmawa – Box9 Jan 13 '11 at 12:25
Coffeescript + Node tutorials would be great ;) thanks! – donald Jan 13 '11 at 13:57
@donald, I'm not aware of any combined CoffeeScript + Node tutorials. Learning them separately is ideal. The link I gave above for Node is a perfect introduction, and for CoffeeScript, this is all you need: jashkenas.github.com/coffee-script – Box9 Jan 13 '11 at 23:23
@donald here, try this one: nodetuts.com/tutorials/… – jcollum Mar 15 at 20:34
feedback

Not only can you run CoffeeScript files directly in Node with

coffee source.coffee

you can also require them as if they were JavaScript files. For instance, if you have lib.coffee in a directory, you can write

require './lib'

from another CoffeeScript file in the same directory. (In order to do this from a JavaScript file, you'll have to add require 'coffee-script' at the top.) So, you never have to do compilation explicitly under Node, unless you're packaging your project for deployment with a tool like npm.

One caveat: In stack traces, the line numbers you'll see refer to the compiled JavaScript, even when you're running CoffeeScript directly (so you don't have access to the JavaScript). A lot of folks are trying to fix this, but it's a big challenge.

link|improve this answer
1  
What happens with client-side coffee/js? – fancy Jan 25 at 6:46
feedback

Video Tutorials

I've seen a great tutorial series by Pedro Teixeira. He's been building an entire series on node tutorials. He includes reference to nodemon for auto detection and compilation and reloading of edited .coffee files.

  1. Coffeescript and Node.js
  2. Nodemon
link|improve this answer
feedback

Also there is Zappa which uses Coffeescript. It looks pretty cool and heavily maintained.

link|improve this answer
feedback

Coffeescript + ExpressJS + Couchdb + Redis + Auth:

https://gist.github.com/652819

link|improve this answer
feedback

If u want to compile all your CS-files (in one directory including subdir) everytime they change automatically into JS-files just use this command:

find . -name '*.coffee' -type f -print0 | xargs -0 coffee -wc
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.