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.
7
votes
2answers
935 views
Best pattern to have models listen to nested models and collections?
Using Backbone.js what is the best pattern to have models listen to all of their nested models and collections all the way down?
Should I put nested models/collections in attributes? Should I create ...
4
votes
2answers
472 views
Spying on Backbone.js route calls with Jasmine
Having problems spying method calls on a Backbone Router to ensure it calles the right method on a given route.
excerpt from the test
describe 'Router', ->
beforeEach ->
@router = ...
4
votes
3answers
5k views
How to apply backbone router for full path, not a hash
Does that possibility exist? Our site is not one page, but all js-files compressed inside of application.js, can I use backbone router for location.path parsing?
I try ...
14
votes
2answers
3k views
how should I include a coffeescript file on only one page?
Edit: a year later if I was going to do this again I'd do it with curl.js instead of Rails asset pipeline.
Related: Best way to add page specific javascript in a Rails 3 app?
I'm writing an app and ...
14
votes
5answers
2k views
Decrementing for loop in coffeescript
I know how to do a incrementing for loop in coffeescript such as:
Coffeescript:
for some in something
Generated Javascript:
for (_i = 0, _len = something.length; _i < _len; _i++)
How do I ...
14
votes
3answers
12k views
Where is body in a nodejs http.get response?
I'm reading the docs at http://nodejs.org/docs/v0.4.0/api/http.html#http.request, but for some reason, I can't seem to to actually find the body/data attribute on the returned, finished response ...
12
votes
2answers
3k views
Backbone.js - Coffeescript extends
I'm making chaining selects with backbone.js by this article http://blog.shinetech.com/2011/07/25/cascading-select-boxes-with-backbone-js/, but got errors, when extending classes.
So, i have ...
11
votes
8answers
2k views
is there a coffeescript auto compile / file watcher for windows?
I'd like to play around with integrating coffeescript into my dev process. But as I see it, I'll have to make a bat file that iterates a set of coffee files and spits out js files. Every time I write ...
10
votes
1answer
2k views
Rails - Calling CoffeeScript from JavaScript
I'm using Rails 3.1 with CoffeeScript and have run into a snag. How do I call a function from a .js.erb file that is located in a .js.coffee file?
Say the function in .js.coffee is the following:
...
8
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 ...
7
votes
3answers
3k views
CoffeeScript: Getter/Setter in Object Initializers
ECMAScript allows us to define getters or setters as following:
[text/javascript]
var object = {
property: 7,
get getable() { return this.property + 1; },
set setable(x) { this.property = x / ...
7
votes
5answers
5k views
CoffeeScript Undefined
In javascript to check if a variable was never created, we just do
if (typeof MyVariable !== "undefined"){ ... }
I was wonder how I do that in coffeescript?... I try something like
if ...
7
votes
6answers
3k views
Backbone.js click event doesn't work with touch
events:
'click' : 'select'
When using this event on Mobile Safari the event gets triggered twice when touched. Is this a known bug or something that I am causing on my own?
I've since changed ...
6
votes
3answers
2k views
Coffeescript + Unit Testing : Global Variables?
I'm trying to use Jasmine for unit testing for a small application written in coffeescript. I've found many sources saying that unit testing can be done perfectly well on JS compiled from ...
6
votes
3answers
2k views
compressing object hierarchies in JavaScript
Is there a generic approach to "compressing" nested objects to a single level:
var myObj = {
a: "hello",
b: {
c: "world"
}
}
compress(myObj) == {
a: "hello",
b_c: "world"
...
5
votes
2answers
615 views
QUnit + coffeescript scope
In Javascript polluting the global namespace is generally regarded as a bad thing. This is why Coffeescript wraps all of your Javascript in a (function() {}).call(this); wrapper.
However, I've begun ...
4
votes
1answer
1k views
Mongoose: Recursive embedded-document in Coffeescript
Based on this example (which works):
var Comment = new Schema();
Comment.add({
title : { type: String, index: true }
, date : Date
, body : String
, comments : [Comment]
});
I wanted to ...
3
votes
0answers
288 views
MobileSafari won't send back Cookies set with CORS
I have a page loading up in MobileSafari which communicated with another server via CORS.
In desktop browsers (tested Chrome and Safari), I am able to log in, get a session cookie, and have that ...
3
votes
1answer
831 views
Wanna run d3 from a Cakefile
I'd like to execute some d3 code from the command line. Initially I just tried something like:
task 'data', 'Build some data with d3', ->
d3 = require('lib/d3.v2')
console.log "d3 ...
3
votes
3answers
3k views
Backbone.js with Eco Templates: How to include template within a template?
Is it possible to include a template within a template? Maybe something similar to the way ERB handles partials?
Rather than attempting to render nested models in a fashion like ERB, it's better to ...
3
votes
2answers
2k views
Coffeescript wrapping files in a function
The coffeescript compiler is, for some reason, wrapping all of my .coffee files in a function when they are compiled. For example, if I have test.coffee:
class TestClass
constructor: (@value) ...
3
votes
1answer
4k views
Rails 3.1 Ajax question
I have a scaffold called post which has a title and a description. On my layout I have a link to create a new post that has :remote => true. How would I make it when I click on that remote link to ...
2
votes
2answers
118 views
Set of CoffeeScript/JavaScript classes and methods available to rest of Rails app
I'm using Rails 3.2.9. When I add CoffeeScript code to a .js.coffee file in the /app/assets/javascripts directory, I get the resulting JavaScript in all of my webpages. The problem is all the ...
2
votes
2answers
846 views
Using jQuery UI in a Bookmarklet
In CoffeeScript, though this code is almost identical to JavaScript:
tabs_html = "<div id='nm-container'><ul><li><a ...
1
vote
2answers
816 views
Difficulty installing Node.js and CoffeeScript in Mac OSX
I'm having some difficulty installing Node and Coffeescript. I have installed node using homebrew and then I have successfully installed NPM. I have tried to install Coffeescript from NPM and it ...
1
vote
1answer
3k views
Combine and minify templates with CoffeeScript / Cake
I have a src/templates/ directory full of mustache templates. How would I combine and minify the contents of those, so they're available for use in my CoffeeScript app?
I'm already following the ...
0
votes
3answers
1k views
Change attribute using checkbox, AJAX, jQuery
I wish to change the boolean attribute of my Task resource depending on wether checkbox is checked or not. I am stuck as I don't know what to do... I have everything before adding this AJAX checkbox ...
13
votes
3answers
5k views
Were `do…while` loops left out of CoffeeScript…?
In CoffeeScript, the while loop comes standard:
while x()
y()
However, the following1 doesn't work:
do
y()
while x()
And this is simply sugar for the first example:
y() while x()
Does ...
11
votes
2answers
9k views
Uncaught TypeError: Cannot set property 'position' of undefined
I have this code giving me the strange error message
Uncaught TypeError: Cannot set property 'position' of undefined
This is the inside of a jQuery plugin to show a google map in a popup.
I was ...
10
votes
2answers
3k views
Nested array comprehensions in CoffeeScript
In Python
def cross(A, B):
"Cross product of elements in A and elements in B."
return [a+b for a in A for b in B]
returns an one-dimensional array if you call it with two arrays (or ...
10
votes
4answers
2k 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
3answers
2k views
How to use Javascript's for (attr in this) with Coffeescript
In Javascript, the "for (attr in this)" is often dangerous to use... I agree. That's one reason I like Coffeescript. However, I'm programming in Coffeescript and have a case where I need ...
7
votes
2answers
1k views
How to use coffeescript in developing web-sites?
How do you use CoffeeScript? It need to be compiled, so - you write code in CoffeScript, compile it, and insert real JavaScript on your site?
Doesn't it take a lot of time? Or is there some another ...
5
votes
2answers
1k views
How can I write this coffeescript so it doesn't refresh my page?
This is my first Coffeescript function and can't figure out how to get this to not refresh my page after the user clicks and the event is fired:
jQuery ->
$(".answer_link").click ->
$val ...
5
votes
1answer
995 views
Backbone relational events not firing?
class TheModel extends Backbone.RelationalModel
relations:[
type: Backbone.HasMany
key: 'subModels'
relatedModel: SubModel
collectionType: SubModels
...
4
votes
2answers
6k views
Rails 3.1 ajax:success handling
So Im playing with CoffeeScript, Rails 3.1 all the good stuff. I have a resource with all the usual routes index, show, create, edit, update, destroy.
The index view has a form that uses :remote ...
4
votes
2answers
721 views
How do I manage assets in Rails 3.1?
OK, so I'm starting a new project using Rails 3.1 and I'm new to CoffeeScript.
Anyway, I like the idea of having asset files representing controllers but what if I only want the JS to render when the ...
3
votes
1answer
115 views
Check if user is blocking 3rd party domain
I have run into an issue where a lot of our support calls are about our images not loading because the user is blocking amazon s3 or a similar 3rd party service. I use 3rd party services for hosting ...
3
votes
2answers
2k views
Classes defined in CoffeeScript not found by Jasmine specs
I am building a backbone.js app on a Rails 3.1 back-end. I'm using CoffeeScript to write the backbone classes, and Jasmine (via jasmine-headless-webkit) for testing.
Given the following (partial) ...
3
votes
5answers
3k views
Does node.js, backbone, socketio and express and coffee script all go together?
I'm trying to get an overview of what's latest and greatest, and was curious how all these different technologies fit together.
Is it like this:
Nodejs is a webserver, backbone is just a framework ...
3
votes
2answers
3k views
Calling a function by its name
Sometimes we need to call a function by its name. I can do it in plain JavaScript as below:
global=this
function add(a,b){return a+b}
global['add'](1,2)
Which works as expected and add() gets ...
2
votes
1answer
162 views
Declaring a different compile path for CoffeeScript
I have a Scalatra app that compiles CoffeeScript, using https://github.com/softprops/coffeescripted-sbt, to a default location, target/scala-2.9.1/resource_managed/main/js. I want to put the generated ...
2
votes
1answer
918 views
how to dynamically add observer methods to an Ember.js object
So i am trying to dynamically add these observer methods to a Ember.js object
holderStandoutCheckedChanged: (->
if @get("controller.parent.isLoaded")
...
2
votes
2answers
2k views
AngularJS cannot find module with latest RequireJS
I just upgraded to RequireJS 2.1.1 - I have an AngularJS app I'm loading with it. I get "No module: app" from angular before the main define runs.
It works fine on RequireJS 2.0.1. Any idea what ...
2
votes
1answer
342 views
Dojo + Rails 3.2.8 + CoffeeScript
I'm trying to use Dojo Toolkit 1.8 instead JQuery in a Rails 3.2.8 web application, mainly due of the lack of a complete and visually uniform widget based on JQuery. Followed these steps:
Unzip ...
2
votes
3answers
2k views
Sublime Text build: cannot find the file specified
I've installed the CoffeeScript plugin via Package Control. When I try to build test.coffee it gives me this:
[Error 2] The system cannot find the file specified
[cmd: [u'cake', u'sbuild']]
[dir: ...
2
votes
1answer
2k views
Querying nested embedded documents with Mongoose
I'm trying to query inside an embedded document that is nested. I've attempted to 'populate' the results but that fails.
How do I get back all of the book details inside the find call? I want all of ...
2
votes
1answer
692 views
Coffeescript and node.js confusion. require instantiates class?
I'm having trouble trying to get my class working in my node.js file. When I require the module I wrote, the require './module' calls my constructor and gives an error. But I actually want to ...
2
votes
4answers
660 views
simple loop in coffeescript
I have this code:
count = $content.find('.post').length;
for x in [1...count]
/*
prev_el_height += $("#content .post:nth-child(" + x + ")").height();
*/
prev_el_height ...
2
votes
4answers
2k views
Instantiate a CoffeeScript class from a class name in a string
How do I instantiate a class in CoffeeScript when I only have the name of the class in a string?
class Dog
bark:->
"Woof"
className = "Dog"
dog = new className # <--- I would like to ...