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?
Yes, CoffeeScript simply compiles into pure JS, making it completely compatible with node.js.
To run CoffeeScripts on node, you can either:
coffee -c example.coffee
to compile, followed by node example.js
to run the compiled JS.coffee example.coffee