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. CoffeeScript can be ...
66
votes
12answers
11k 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 ...
62
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?
51
votes
4answers
10k 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);
...
45
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...
34
votes
5answers
5k 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
32
votes
6answers
667 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 ...
29
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 ...
26
votes
7answers
924 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 ...
23
votes
5answers
11k 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 ...
22
votes
5answers
8k 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 ...
22
votes
5answers
7k 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 :)
21
votes
2answers
797 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 ...
18
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
3answers
371 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
3answers
2k 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.
15
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
15
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 ...
15
votes
6answers
5k 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
14
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 ...
13
votes
1answer
251 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
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);
12
votes
5answers
651 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?
...
12
votes
4answers
808 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
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] ...
12
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 ){
// ...
11
votes
6answers
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 ...
11
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/ ...
11
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 ...
10
votes
1answer
915 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 ...
10
votes
2answers
710 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
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 ...
9
votes
2answers
129 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 ...
9
votes
1answer
320 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 ...
9
votes
3answers
2k 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 ...
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
520 views
How do I generate ctags for CoffeeScript?
Is it possible to generate a ctags file for CoffeeScript in vim/MacVim?
9
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 :)
9
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 ...
9
votes
4answers
4k 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 ...
9
votes
1answer
4k 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 ...
9
votes
3answers
839 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 ...
9
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"
...
8
votes
4answers
372 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 ...
8
votes
3answers
154 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
262 views
how should I include a coffeescript file on only one page?
Related: Best way to add page specific javascript in a Rails 3 app?
I'm writing an app and using coffeescript to generate all of the js. That's why the related question doesn't do what I need.
I'd ...
8
votes
2answers
834 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
305 views
What is the correct way to launch your server from vows for testing?
I have an express server which I am testing using vows. I want to run the server from within the vows test suite, so that I dont need to have it running in the background in order for the test suite ...
8
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 ...
8
votes
1answer
133 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 ...
8
votes
3answers
728 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 ...