Tagged Questions
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.
60
votes
11answers
10k 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 ...
60
votes
7answers
6k views
Has anyone used Coffeescript for a production application? [closed]
Coffeescript looks pretty cool. Has anyone used it? What are its Pros & Cons?
43
votes
5answers
5k views
Is there a tool for converting JavaScript to CoffeeScript?
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...
40
votes
4answers
9k views
CoffeeScript & Global Variables
e.g
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);
...
32
votes
5answers
4k 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?
Thanks
31
votes
6answers
633 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 ...
27
votes
15answers
5k 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 ...
25
votes
7answers
907 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 ...
21
votes
2answers
751 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 ...
21
votes
4answers
10k 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 ...
21
votes
5answers
6k 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 :)
17
votes
5answers
7k 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 ...
15
votes
3answers
350 views
Best way to require several modules in NodeJS
I don't much like the standard way to require modules, which goes something like this:
connect = require 'connect'
express = require 'express'
redis = require 'redis'
sys = require 'sys'
coffee = ...
15
votes
6answers
3k 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 ->
...
15
votes
5answers
4k 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
13
votes
1answer
247 views
Does the asset pipeline rails 3.1 waste cycles?
In rails 3.1, does .coffee and //= require files get processed only once or with each asset
request?
For example,I have a file
//= require source/main.js.coffee
//= require source/second.js.coffee
...
13
votes
6answers
2k views
Can I run coffeescript in Heroku?
I have a node.js app written in CoffeScript.
I'm wondering what is needed in order to host the app on Heroku.
Thanks
13
votes
1answer
3k 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 ...
12
votes
3answers
2k views
integrating CoffeeScript with Eclipse?
there is some way to integrate coffescript and eclipse? so i write in one window in coffee and the other will show the compiled code as js...
I'll wait for answears. thanks.
12
votes
4answers
693 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)
12
votes
1answer
2k views
Why CoffeeScript? [closed]
I see more and more references to applications being written with CoffeeScript, the latest [at the time this was originally written] being http://chalk.37signals.com - a blog post about how this was ...
11
votes
3answers
2k views
how to write setTimeout with params by Coffeescript
Please tell me how to write javascript below in coffeescript.
setTimeout(function(){
something(param);
}, 1000);
11
votes
5answers
573 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?
...
10
votes
2answers
606 views
How do you write DRY, modular coffeescript with Sprockets in Rails 3.1?
I'm in the early stages of trying to write some sensible Javascript. I want to namespace basically everything under the name of my application to avoid globals as much as possible, but still give me a ...
10
votes
3answers
2k 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 ){
// ...
10
votes
5answers
2k 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 ...
10
votes
2answers
3k 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 ...
9
votes
2answers
2k 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 ...
9
votes
2answers
437 views
How do I generate ctags for CoffeeScript?
Is it possible to generate a ctags file for CoffeeScript in vim/MacVim?
9
votes
7answers
3k views
Coffee script compilation
I'm looking for simplest possible way to automatically recompile coffee scripts into JS.
Reading documentation but still having troubles to get exactly what I want.
I need it to watch folder src/ ...
9
votes
3answers
794 views
Client Side Dependency Management in CoffeeScript
What is the best way to do Dependency Management amongst CoffeeScript files if the resulting javascript files eventually need to be concatenated together for use on the client side?
For server side ...
8
votes
2answers
91 views
Coffeescript/Javascript Mixins - Idiot Seeking Explanation
I preface this by saying my Javascript experience is very weak. Lots of jQuery, very little real comprehension. I have read numerous books on javascript and, while I am not a poor programmer, the ...
8
votes
3answers
136 views
n-ary curry in CoffeeScript
I was playing with CoffeeScript when I found myself writing the following lines and then looking at them in awe:
compose = (f, g) -> (x) -> f g x
curry = (f) -> (x) -> (y) -> f(x, y)
...
8
votes
2answers
543 views
Coffeescript: How to comment? - “/* my comments */” 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 ...
8
votes
1answer
633 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 ...
8
votes
1answer
308 views
Does CoffeeScript still allow JavaScript-style == 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 ...
8
votes
1answer
1k views
How do I associate a CoffeeScript file with a view?
Just installed rails 3.1 rc1 and am trying to grok the best way to manage javascript with the new asset pipeline
By default all coffeescript is compiled into a single application.js file, this is a ...
8
votes
3answers
1k views
Coffeescript — How to create a self-initiating anonymous function?
How to write this in coffeescript?
f = (function(){
// something
})();
Thanks for any tips :)
8
votes
4answers
3k 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 ...
8
votes
4answers
3k views
NodeJS + CoffeeScript, render coffeescript compiled js on request
What I would like to do is add the following to me already running coffeescript written server
app.get '/test.js', (req, res) ->
render coffee somecoffeefile.coffee
Is something like this ...
8
votes
3answers
2k 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] ...
8
votes
4answers
3k views
Why are my CoffeeScript/backbone.js events not firing?
I'm trying to familiarize myself with CoffeeScript and backbone.js, and I must be missing something.
This CoffeeScript:
MyView = Backbone.View.extend
events: {
"click" : "testHandler"
...
7
votes
4answers
345 views
CoffeeScript-like language written in Python
Are there any languages targeting JavaScript (like CoffeeScript) and written in Python? I found Pyjamas, but it’s GWT of Python as I see. I want a language that doesn’t need heavy runtime library ...
7
votes
1answer
2k views
How to use CoffeeScript and Eclipse together in Windows?
I want to use CoffeeScript inside Eclipse, because I'm working on a project of a game using JavaScript and my productivity is slow... so I want to integrate CoffeeScript with Eclipse in Windows ...
7
votes
2answers
1k 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 ...
7
votes
1answer
128 views
Levenshtein Distance Formula in CoffeeScript?
I am trying to create or find a CoffeeScript implementation of the Levenshtein Distance formula, aka Edit Distance. Here is what I have so far, any help at all would be much appreciated.
levenshtein ...
7
votes
3answers
627 views
Can I use CoffeeScript in the views executed on render.js?
What do I need to do so that I can use CoffeeScript in the Rails JS views? For example:
def index
format.js { render :layout => false }
end
What would I need to do in order for Rails to use ...
7
votes
3answers
1k views
how do i make a $.get request using coffeescript?
How do I do the following in CoffeeScript?
$( function() {
$('input#username').keyup( function() {
var username = $('input#username').val();
url = '/users/check_username/';
...
7
votes
1answer
3k views
Views within Views? How to generating lists of items with Backbone.js?
I'm trying to build a list of items (eg. books) and I would like to then allow the user to filter this list (eg. by author). I would expect that each item in the list would have it's own view, and ...
7
votes
3answers
2k 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 ...