1 replies
I'm thinking about giving it a spin. Does it work with CoffeeScript? Anything to look out for?
#nodejs
  • Profile picture of the author GeneralLedger
    It definitely works with coffeescript. You might also want to use iced-coffeescript, which adds two keywords (await and defer) to help with the asynchronous nature of node.js programming.

    Things to watch our for? Lots of things. Probably the most important thing to watch out for is writing "blocking" code. One of the main benefits of node.js is the non-blocking I/O. So, just be careful not to shoot yourself in the foot and write blocking code.
    {{ DiscussionBoard.errors[9470823].message }}

Trending Topics