About 13,700,000 results
Open links in new tab
  1. CoffeeScript on Windows? - Stack Overflow

    Jul 5, 2010 · CoffeeScript looks really cool, I would switch all my javascript programming over to coffeescript if there was an eclipse plug-in that compiled on-the-fly like the excellent "Try …

  2. Can I use CoffeeScript instead of JS for node.js?

    Jan 13, 2011 · 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, …

  3. How to use setTimeout() in Coffeescript - Stack Overflow

    Mar 24, 2015 · How to use setTimeout () in Coffeescript Asked 12 years, 1 month ago Modified 10 years, 8 months ago Viewed 22k times

  4. Is there a way to send CoffeeScript to the client's browser and have it ...

    Mar 3, 2011 · It says on the front page of the CoffeeScript website: "The CoffeeScript compiler is itself written in CoffeeScript, using the Jison parser generator. The command-line version of coffee is …

  5. How do I define global variables in CoffeeScript? - Stack Overflow

    Nov 18, 2010 · The CoffeeScript above simply compiles to (function(){ return this })(); so we're exercising that behavior to reliably access the global object.

  6. in CoffeeScript, how can I use a variable as a key in a hash?

    CoffeeScript, like JavaScript, does not let you use expressions/variables as keys in object literals. This was support briefly, but was removed in version 0.9.6.

  7. Function declaration in CoffeeScript - Stack Overflow

    Jul 1, 2011 · CoffeeScript in a sense already "hoists" because it predeclares variables with var at the top of the scope. So functions can refer to each other and order doesn't matter.

  8. Conditional operator in Coffeescript - Stack Overflow

    The OP asks about Conditional operator in Coffeescript and how to write it in, giving the JS example. It is just an example and has nothing to do with the actual syntax problem.

  9. Has anyone used Coffeescript for a production application?

    Aug 11, 2011 · We use coffeescript for all of the javascript in BusyConf. A large portion of BusyConf is a client side application that runs in browers, including support for offline mode. All of our coffeescript …

  10. How to iterate over the keys and values in an object in CoffeeScript?

    Jun 20, 2011 · Precisely. CoffeeScript's of compiles to JavaScript's in. It's a common point of confusion, but having in for use with arrays is incredibly useful. I talk about this at length in the CoffeeScript book.