CoffeeScript is a little language that compiles into JavaScript. Underneath all of those embarrassing braces and semicolons, JavaScript has always had a gorgeous object model at its heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.

learn more… | top users | synonyms (1)

139
votes
5answers
37k views

CoffeeScript & Global Variables

On Coffeescript.org: bawbag = (x, y) -> z = (x * y) bawbag(5, 10) would compile to: var bawbag; bawbag = function(x, y) { var z; return (z = (x * y)); }; bawbag(5, 10); compiling ...
94
votes
14answers
23k views

CoffeeScript on Windows?

How can I try CoffeeScript on Windows? The installation instructions are only for *nix: http://jashkenas.github.com/coffee-script/#installation EDIT: Since I asked this a while ago, many new ...
81
votes
7answers
10k views

Has anyone used Coffeescript for a production application? [closed]

Coffeescript looks pretty cool. Has anyone used it? What are its Pros & Cons?
79
votes
7answers
18k views

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

What are my restrictions if I want to code node.js and use CoffeeScript? Can I do anything I'd be able to do in JS?
71
votes
5answers
14k views

how to write setTimeout with params by Coffeescript

Please tell me how to write javascript below in coffeescript. setTimeout(function(){ something(param); }, 1000);
71
votes
3answers
9k views

Is there a tool for converting JavaScript to CoffeeScript? [closed]

I'd love to use CoffeeScript, but converting all my JavaScript files doesn't seem like a task I should have to do by hand...
47
votes
8answers
36k views

Clean way to remove element from javascript array (with jQuery, coffeescript)

There are many questions about this, not least: jQuery version of array contains, a solution with the splice method and many more. However, they all seem complicated and annoying. With the combined ...
44
votes
6answers
22k views

Examples of CoffeeScript in NodeJS?

As a pet project, I am trying to get familiar with NodeJS and CoffeeScript, and am finding it hard to get the ball rolling. I've found plenty of examples of single-file super-simple apps like in ...
43
votes
4answers
5k views

What does “Splats” mean in the CoffeeScript tutorial?

Looking at this CoffeeScript tutorial : http://jashkenas.github.com/coffee-script/ I don't quite see what the Splats is for. What is this construction? Where does it come from (historically)
41
votes
3answers
6k views

CoffeeScript. Ternary operation

I need to set value to a that depends on condition. What is the shortest way to do this with CoffeeScript? E.g. this is how I'd do it in JavaScript: a = true ? 5 : 10 # => a = 5 a = false ? 5 : ...
40
votes
17answers
10k views

How can I compile CoffeeScript from .NET?

I want to write an HttpHandler that compiles CoffeeScript code on-the-fly and sends the resulting JavaScript code. I have tried MS [JScript][1] and IronJS without success. I don't want to use ...
39
votes
4answers
14k views

Iterate over associative array in coffeescript

I have an object (an "associate array", also known as a plain Javascript object): obj = {} obj["Foo"] = "Bar" arr["bar"] = "Foo" and I need to iterate over it using coffeescript. Now, doing like ...
39
votes
7answers
3k views

My JavaScript patterns/practices stink. Where should I seek help?

I've been working almost exclusively on back-end tasks for the past few years, and I've just noticed that most JavaScript (and CoffeeScript) projects have got a helluva lot prettier in my absence. I ...
38
votes
6answers
5k views

Can I run coffeescript in Heroku?

I have a node.js app written in CoffeeScript. I'm wondering what is needed in order to host the app on Heroku. Thanks
37
votes
6answers
9k views

Private members in CoffeeScript?

does somebody know how to make private, non-static members in CoffeeScript? Currently I'm doing this, which just uses a public variable starting with an underscore to clarify that it shouldn't be used ...
37
votes
5answers
7k views

A Backbone.js Collection of multiple Model subclasses

I have a REST Json API that returns a list "logbooks". There are many types of logbooks that implement different but similar behavior. The server side implementation of this on the Database layer is a ...
35
votes
3answers
8k views

Coffeescript - Method chaining with function arguments

What's the best way to chain methods in coffeescript? For example, if I have this javascript how could I write it in coffeescript? var req = $.get('foo.htm') .success(function( response ){ // ...
33
votes
2answers
9k views

require()'ing a CoffeeScript file from a JavaScript file or REPL

I'm using Node.js and wanting to incorporate CoffeeScript into my workflow. I have two use-cases: I want to be able to write JavaScript files which require() CoffeeScript modules I want to be able ...
32
votes
7answers
8k views

Writing a jquery plugin in coffeescript - how to get “(function($)” and “(jQuery)”?

I am writing a jquery plugin in coffeescript but am not sure how to get the function wrapper part right. My coffeescript starts with this: $.fn.extend({ myplugin: -> @each -> ...
30
votes
3answers
5k views

Coffeescript — How to create a self-initiating anonymous function?

How to write this in coffeescript? f = (function(){ // something })(); Thanks for any tips :)
30
votes
9answers
12k views

IDE (or its add-in) for CoffeeScript programming

I'm new in CoffeeScript and looking for a good IDE or extension for it, which can do the following: syntax highlighting code competition code outlining
29
votes
11answers
2k views

How to manage client-side JavaScript dependencies?

Although there are great solutions to manage dependencies on the server side, I could not find any that satisfies all my needs to have a coherent client side javascript dependency management workflow. ...
28
votes
7answers
7k views

Cannot call 'start' of undefined when starting backbone.js history.

I get Cannot call 'start' of undefined when calling... Backbone.history.start() When running some checks Backbone returns the object but Backbone.history returns undefined. What could be the ...
28
votes
7answers
11k views

CoffeeScript editor for MacOS

Does anybody know a good text editor for Mac that supports syntax highlighting in CoffeeScript? Is it possible to do this in TextWrangler or BBEdit? Cheers :)
26
votes
1answer
4k views

Static classes and methods in coffeescript

I want to write a static helper class in coffeescript. Is this possible? class: class Box2DUtility constructor: () -> drawWorld: (world, context) -> using: ...
26
votes
7answers
1k views

What's up with this JavaScript pattern?

I saw this pattern: Money = (function() { function Money(rawString) { this.cents = this.parseCents(rawString); } }); in this CoffeeScript screencast preview. (The homepage for the ...
26
votes
3answers
4k views

Is there any way to not return something using CoffeeScript?

It seems like CoffeeScript automatically returns the last item in a scope. Can I avoid this functionality?
26
votes
2answers
1k views

Using CoffeeScript in a production environment [closed]

I really like using CoffeeScript (1.1.1) for small projects and it worked out great so far. However before using it in a more broad environment I would like to hear second opinions on using it in ...
25
votes
3answers
8k views

coffeescript - How to comment? “/* this */” doesn't work

In what ways can you comment in Coffeescript? The docs say you can use 3 hash symbols to start and close a comment block ### comments go here ### I've found that I can sometimes use the ...
25
votes
2answers
1k views

How can CoffeeScript be written in CoffeeScript?

So as a new web programmer (background is mostely in C,C++, and Python) with no javascript experience (or desire to experience it, based on what I have seen) I have been doing some precursory ...
25
votes
2answers
4k views

CoffeeScript, When to use fat arrow (=>) over arrow (->) and vice versa

When building a class in CoffeeScript, should all the instance method be defined using => and all the static methods being defined using -> ? Thanks
25
votes
3answers
1k views

BackboneJS Rendering Problems

For the last six months I've been working with Backbone. The first two months were messing around, learning and figuring out how I want to structure my code around it. The next 4 months were pounding ...
24
votes
2answers
5k views

Integrating CoffeeScript with Eclipse?

Is there a way to integrate CoffeeScript and Eclipse, so that when I write CoffeeScript in one window the other will show the compiled code as Javascript? I'll wait for answers. Thanks.
22
votes
9answers
3k views

Is there a screencast/tutorial site for CoffeeScript?

I'm new to CoffeeScript, but I am really looking forward to writing JavaScript code in something more akin to Ruby. What 2-3 good resources can be recommended for tutorials or screencasts to get up ...
22
votes
4answers
3k views

Defining an array of anonymous objects in CoffeeScript

How do I define an array of anonymous objects in CoffeeScript? Is this possible at all, using the YAML syntax? I know that having an array of named objects is quite easy: items:[ item1: ...
22
votes
6answers
6k views

Functions In CoffeeScript

I'm trying to convert a function from Javascript to CoffeeScript. This is the code: function convert(num1, num2, num3) { return num1 + num2 * num3; } But how I can do that in CoffeeScript? ...
22
votes
3answers
5k views

Is there a way to send CoffeeScript to the client's browser and have it compiled to JavaScript *there*?

Is there a way to send CoffeeScript to the client's browser and have it compiled to JavaScript there? <script type="text/coffeescript"> square = (x) -> x * x list = [1, 2, 3, 4, 5] ...
22
votes
3answers
7k views

CoffeeScript unit testing?

I'm using CoffeeScript in a Rails application, and I would like to unit test it. Google didn't turn up anything, is there any way to do it short of writing my own testing framework or testing the ...
21
votes
6answers
6k views

Compile CoffeeScript on Save?

Is there anyway to easily compile CoffeeScript on save? I'm using TextMate or Sublime Text 2.
21
votes
3answers
6k views

How to pass two anonymous functions as arguments in CoffeScript?

Forgive the CoffeeScript newb question. I want to pass two anonymous functions as arguments for jQuery's hover, like so: $('element').hover( function() { // do stuff on mouseover }, ...
21
votes
2answers
7k views

Using bootstrap-modal as Backbone.js view

I am attempting to create a Backbone.js view based on a Twitter bootstrap-modal, which makes use of Backbone's automatic event delegation via the events attribute of the view. Unfortunately, ...
20
votes
4answers
7k views

Pattern for CoffeeScript modules

While reviewing the source code for CoffeeScript on Github, I noticed that most, if not all, of the modules are defined as follows: (function() { ... }).call(this); This pattern looks like it ...
20
votes
3answers
12k views

Coffeescript 'this' inside jQuery .each()

I have some coffeescript like the following: class foo: @bar = 'bob loblaw' processRows: -> $("#my-table>tr").each -> id = $(this).attr("id") ...
19
votes
2answers
8k views

for (var key in object) in CoffeeScript?

How can I use for (var key in object) in CoffeeScript? It compiles to... for (_i = 0, _len = object.length; _i < _len; _i++) { key = object[_i]; ...but I just want to iterate though an ...
19
votes
2answers
8k views

Simplest way to check if key exists in object using CoffeeScript

In CoffeeScript, what is the simplest way to check if a key exists in an object?
19
votes
1answer
1k views

Does CoffeeScript still allow JavaScript-style == equality semantics?

I love that CoffeeScript compiles == into the JavaScript === operator. But what if you want the original JS == semantics? Are they still available? I've pored over the documentation and can't find ...
19
votes
2answers
5k views

Function declaration in CoffeeScript

I notice that in CoffeeScript, if I define a function using: a = (c) -> c=1 I can only get the function expression: var a; a = function(c) { return c = 1; }; But, personally I often use ...
18
votes
2answers
11k views

In CoffeeScript how do you append a value to an Array?

What is the proscribed way to append a value to an Array in CoffeeScript? I've checked the PragProg CoffeeScript book but it only discusses creating, slicing and splicing, and iterating, but not ...
18
votes
2answers
4k views

“Can't find variable” error with Rails 3.1 and Coffeescript

I have views in my application that reference my application.js file which contains functions I use throughout my application. I just installed the Rails 3.1 release candidate after having used the ...
18
votes
5answers
4k views

Structuring coffeescript code?

Under Rails 3.1, I'm trying to find out how to move a few coffeescript classes away from my controller default coffeescript file (home.js.coffee) into another file, in order to structure the whole a ...

1 2 3 4 5 69