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.
140
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 ...
7
votes
2answers
3k views
How can I use option “--bare” in Rails 3.1 for CoffeeScript?
Someone know how can I use this option in Rails 3.1?
Now CoffeScript puts a function with .call(this) on each file, but I want to remove this.
EDIT:
"Can't find variableā error with Rails 3.1 and ...
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 ...
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 ...
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] ...
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?
4
votes
4answers
6k views
How to rotate a 3D object on axis three.js?
I have a great problem about the rotation in three.js
I want to rotate my 3D cube in one of my game.
//init
geometry = new THREE.CubeGeometry grid, grid, grid
material = new THREE.MeshLambertMaterial ...
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
},
...
12
votes
1answer
2k 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
3k views
Getting rid of CoffeeScript's closure wrapper
How can I omit the automatic closure wrappers that hides my variables from the global scope?
(function() {
// my compiled code
}).call(this);
Just playing around with CoffeeScript+SproutCore, and ...
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 ...
16
votes
4answers
9k views
How to access instance variables in CoffeeScript engine inside a Slim template
I have a Rails controller in which I am setting a instance variable -
@user_name = "Some Username"
In my .slim template I am using coffee engine to generate javascript and want to print out 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
vote
1answer
371 views
Variable types in CoffeeScript
I'm not quite sure the uses for the different variables in CoffeeScript
class Cow
@utters = 1
constructor: (@name) ->
mutate:->
alert @utters
heads: 1
feet = 9
c = new Cow
...
0
votes
0answers
151 views
How to extract specific data from JSON using CoffeeScript?
So, I want to grab a specific piece of data from a massive JSON string. The entire string if posted would be more than 10 pages, so I'm just including an example snippet:
futureData: null },
...
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?
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. ...
14
votes
2answers
3k views
Why use the javascript function wrapper (added in coffeescript) “.call(this)”
When I use the latest (1.0) release of coffee-script, a simple javascript output looks like this (by default):
(function() {
var a;
a = 1;
}).call(this);
What does .call(this) do and what would ...
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 ...
10
votes
3answers
3k views
Classes within Coffeescript 'Namespace'
I found this snippet on the Coffeescript FAQ for creating simplistic namespaces ..
# Code:
#
namespace = (target, name, block) ->
[target, name, block] = [(if typeof exports isnt 'undefined' ...
8
votes
4answers
1k views
How do you limit CoffeeScript (or JavaScript) execution to a particular controller and action in Rails 3.1?
The new Rails 3.1 asset pipeline is really nice, but since all CoffeeScript (or JavaScript) files get melded down into a single file that is included in every page, it raises this question:
How do I ...
7
votes
3answers
1k views
Xtext: grammar for language with significant/semantic whitespace
How can I use Xtext to parse languages with semantic whitespace? I'm trying to write a grammar for CoffeeScript and I can't find any good documentation on this.
3
votes
2answers
3k views
error installing coffeescript on mac 10.7.2
Node and npm are both installed and up to date but keep getting this error when trying to install coffeescript. I am still new to programming so any advice would be greatly appreciated.
...
2
votes
2answers
836 views
Micropost character countdown (Rails Tutorial, 2nd Ed, Chapter 10, Exercise 7)
I attempted the micropost character countdown in The Rails Tutorial (Chapter 10, Exercise 7) using the information here as a base and with some help from StackOverflow answers here and here.
On ...
2
votes
2answers
605 views
Chrome doesn't recognize console.log when it's called log
Like all programmers, I'm lazy. So in my utils.js there's a simple line:
window.log = console.log
This works fine in firefox, but it makes Chrome cry like a little boy. I have to write console.log ...
6
votes
2answers
1k views
Ember computed properties in Coffeescript
I want to implement the following Javascript code in Coffeescript
App.ItemView = Ember.View.extend({
classNameBindings: ['itemId'],
itemId: function() {
...
2
votes
1answer
1k views
How to make method private and inherit it in Coffeescript?
How to make method "btnClick" private?
class FirstClass
constructor: ->
$('.btn').click @btnClick
btnClick: =>
alert('Hi from the first class!')
class SecondClass extends ...
1
vote
1answer
172 views
When does the “fat arrow” (=>) bind to “this” instance
The fat arrow can be used in different settings but it somehow doesn't
always bind to the instance I want.
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 ...
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 ...
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
71
votes
5answers
15k views
how to write setTimeout with params by Coffeescript
Please tell me how to write javascript below in coffeescript.
setTimeout(function(){
something(param);
}, 1000);
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 ...
16
votes
3answers
9k views
erb in coffee script with rails 3.1
I would like to use some erb in my .coffee files, like the following example
myLatlng: new google.maps.LatLng(<%=@location.latitude %>, <%=@location.longitude %>)
I renamed my ...
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 ...
15
votes
12answers
9k 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/ ...
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 ->
...
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.
9
votes
3answers
2k views
Multiple Files communication with coffeescript
When I create a new coffeescript file, I cannot access the code in the compiled code from another file because it gets wrapped in some function scope. For example:
CoffeeScript:
class ChatService
...
7
votes
3answers
4k views
How to use package installed locally in node_modules?
How do I use a local version of a module in node.js. For example, in my app, I installed coffee-script:
npm install coffee-script
This installs it in *./node_modules* and the coffee command is in ...
18
votes
4answers
5k views
Why should I really move to coffee script? How much time does it really save? [closed]
I am web developer. I use java script quite a lot.
Lately it seems as though all I hear is just about this new scripting language called coffee script.
I read through their tutorials and quick ...
10
votes
2answers
1k views
Expose a javascript api with coffeescript
I recently started using coffeescript and was curious what is the "right" way to expose an object that I create with Coffeescript to other javascript pages. Because of coffeescripts wrapping ...
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 ...
11
votes
2answers
1k views
Is there a Coffeescript for Java? In other words X gets compiled to Java
Is there a language that gets compiled to Java code (not Byte code but Java .. so no Groovy, Scala, Jython, JRuby etc.)?
In other words is there a CoffeeScript for Java?
One of the major flaws I ...
8
votes
3answers
978 views
Use “coffee” instead of “node” command in production
I have an app.js that is running express.js.
I wanna convert the code to coffeescript and thought about to create a app.coffee that I compile to app.js so I can run it with "node app.js".
But then ...
7
votes
2answers
1k views
Why is this sinon spy not being called when I run this test?
I have a Backbone Model:
class DateTimeSelector extends Backbone.Model
initialize: ->
@bind 'change:date', @updateDatetime
@bind 'change:time', @updateDatetime
updateDatetime: =>
...
12
votes
2answers
218 views
What are the differences between these three patterns of “class” definitions in JavaScript?
Are there any important/subtle/significant differences under the hood when choosing to use one of these four patterns over the others? And, are there any differences between the them when ...
11
votes
2answers
2k views
How can I completely disable CoffeeScript in a Rails 3.1 app?
At the moment when I generate a new controller, Rails also generates a .js.coffee file for the controller as well. As I don't use CoffeeScript I want Rails instead generate .js files for me.
Is it ...
9
votes
1answer
1k views
CoffeeScript Existential Operator and this
I noticed something a little odd with the CoffeeScript compilier and was wondering if this was correct behavior or not. If it is correct I'm curious why there is a difference..
Given the following ...
3
votes
1answer
2k views
CoffeeScript IDE for Windows - tried Titanium Studio and RubyMine
I'm trying to find a good way to work on CoffeeScript on Windows and be able to process these files quickly to JavaScript in the IDE.
RubyMine - if I just open a .coffee file in RubyMine this seems ...
