As far as I know CoffeScript requires node.js, npm and cygwin. Am I wrong?
Poll: Have you moved from JavaScript to CoffeeScript?
31–40 of 178 posts
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#32Earlier quoted context omitted.
Do you have an example of a real-world piece of code that wants to access both the lexical and dynamic "this" ... and isn't a jQuery callback?
What's wrong with jQuery callbacks? ;)
AccountView.prototype.render = function() {
$(".account").click(function(e) {
// `this` is now the same as `e.currentTarget`
// But `e.target` is also useful.
// And you what you really want is for `this`
// to still point at the AccountView instance.
});
};Re: Poll: Have you moved from JavaScript to CoffeeScript?
#33Re: Poll: Have you moved from JavaScript to CoffeeScript?
#34This is going to be a very interesting poll result. Even 5 or 10% penetration is something remarkable, for a language as widely-used as JavaScript. If you feel like providing any more color beyond your vote, your impressions after using CoffeeScript in anger -- I'd love to hear 'em.
Other than that I see a lot to like in CS though.
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#35JS is alright, dammit. You don't need CS, you need to get your shit done.
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#36This is going to be a very interesting poll result. Even 5 or 10% penetration is something remarkable, for a language as widely-used as JavaScript. If you feel like providing any more color beyond your vote, your impressions after using CoffeeScript in anger -- I'd love to hear 'em.
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#37I just did my first tiny project in coffeescript and found it to be an odd experience. I was far too aware that I was programming in tokens that needed to map to JavaScript. Far too often I had to go back to the interactive "Try CoffeeScript" form on the website to peck things into until the parser errors went away. To those more experienced: at some point does thinking in pure coffeescript take over, and the JavaScr…
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#38http://blog.directededge.com/2010/05/30/what-programming-lan...
The core message being: things like Scala, Erlang, et al still represent a tiny portion of the actual tech world. (And our customers tend to be biased towards being techy anyway.) Just because CoffeeScript gets a lot of mentions in the ultra-early-adopter demographic doesn't mean that it's measurably popular yet.
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#39This is going to be a very interesting poll result. Even 5 or 10% penetration is something remarkable, for a language as widely-used as JavaScript. If you feel like providing any more color beyond your vote, your impressions after using CoffeeScript in anger -- I'd love to hear 'em.
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#40This is going to be a very interesting poll result. Even 5 or 10% penetration is something remarkable, for a language as widely-used as JavaScript. If you feel like providing any more color beyond your vote, your impressions after using CoffeeScript in anger -- I'd love to hear 'em.
Used it. Not extensively, but I have. It adds nothing of real value for me; I have no fundamental beef with the Good Parts of JavaScript and get nothing from a Ruby-inspired hat on top. I'd like to see something like MileScript gain some traction--not to replace JavaScript, but as another tool in the toolbox. MileScript adds new value that you don't really get with plain JS; CoffeeScript doesn't.
Milescript turns Javascrpit into Java. Whilst many developers don't have a problem with static typing, none I know of like the verbosity of Java.
An ML or Haskell styled Javascript might fare better.