About 51 results
Open links in new tab
  1. What is TypeScript and why should I use it instead of JavaScript?

    What is the TypeScript language? What can it do that JavaScript or available libraries cannot do, that would give me reason to consider it?

  2. 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 …

  3. 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 …

  4. is coffeescript faster than javascript? - Stack Overflow

    Jan 29, 2012 · Is Coffeescript optimized, too? Since Coffeescript seems to make heavy use of non-common Javascript functionality I'm worried how their performance compares. Have you experience …

  5. 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 …

  6. How can I compile CoffeeScript from .NET? - Stack Overflow

    Jul 21, 2013 · Since the CoffeeScript compiler now runs on Internet Explorer, after a couple of recent tweaks, it should be good to go within other MS-flavors of JavaScript as well. Try including …

  7. What is the difference between JavaScript and ECMAScript?

    May 15, 2016 · What's the difference between ECMAScript and JavaScript? From what I've deduced, ECMAScript is the standard and JavaScript is the implementation. Is this correct?

  8. CoffeeScript can't use spread operator with class fields

    May 13, 2022 · CoffeeScript can't use spread operator with class fields Asked 3 years, 8 months ago Modified 3 years, 8 months ago Viewed 861 times

  9. javascript - the right time to use coffeescript - Stack Overflow

    Apr 24, 2012 · CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way." (taken from coffeescript's site). There's a tool to assist programmers to avoid javascript pitfalls called …

  10. 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.