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
|
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
| ||||
|
feedback
|
|
Yes, CoffeeScript simply compiles into pure JS, making it completely compatible with node.js. To run CoffeeScripts on node, you can either:
| |||||||||||||
feedback
|
|
Not only can you run CoffeeScript files directly in Node with
you can also require them as if they were JavaScript files. For instance, if you have
from another CoffeeScript file in the same directory. (In order to do this from a JavaScript file, you'll have to add 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. | |||||
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. | |||
|
feedback
|
|
Also there is Zappa which uses Coffeescript. It looks pretty cool and heavily maintained. | |||
|
feedback
|
|
Coffeescript + ExpressJS + Couchdb + Redis + Auth: | |||
|
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:
| |||
|
feedback
|