Sha256: 9d07cabee9a716a20927875f86382a2e4763e9e4303e84e78d317f0dc2ff042c
Contents?: true
Size: 1.38 KB
Versions: 295
Compression:
Stored size: 1.38 KB
Contents
JavaScript is a great language, but not everyone likes writing in it. Thus, people and organizations have started to write languages that transpile (transpiling keeps the same level of abstraction, compiling decreases the level of abstraction) into JavaScript, that they feel are nicer to write in than JavaScript. CoffeeScript is one example, another is Microsoft's TypeScript. What are the specific advantages of CoffeeScript? From [coffeescript.org](http://www.coffeescript.org): > CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, > JavaScript has always had a gorgeous heart. CoffeeScript is an attempt to expose the good parts of JavaScript > in a simple way. > > The golden rule of CoffeeScript is: "It's just JavaScript". The code compiles one-to-one into the equivalent JS, > and there is no interpretation at runtime. You can use any existing JavaScript library seamlessly from CoffeeScript > (and vice-versa). The compiled output is readable and pretty-printed, will work in every JavaScript runtime, and tends > to run as fast or faster than the equivalent handwritten JavaScript. You should learn CoffeeScript if you like programming in JavaScript, and want to experiment with a different way to write it. With transpiled versions of JavaScript (ECMA 2015, TypeScript, etc) becoming more popular, this is a valuable skill for a coder.
Version data entries
295 entries across 295 versions & 1 rubygems