1

Currently, I'm running my app like this coffee app.coffee but I wonder if it would be a better choice to compile it to javascript and then run it like this node app.js.

Thanks

jackdbernier
  • 1,542
  • 1
  • 17
  • 32
  • dup of http://stackoverflow.com/questions/7596230/use-coffee-instead-of-node-command-in-production?rq=1 – mpm Apr 23 '13 at 15:27

1 Answers1

1

Running your app through the coffee command is fine, as your code is initially converted to JavaScript before being passed to Node. It's important to note that this happens up-front, and none of this parsing happens during runtime.

Robert Messerle
  • 3,022
  • 14
  • 18