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)

0
votes
0answers
12 views

Google Analytics Code as Coffeescript Class

How would I go about creating a coffeescript class that I can use in my Rails application? (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ ...
-1
votes
0answers
16 views

coffeescript node line numbers

I'm using coffeescript with node.js When errors pop up the line numbers do not correspond to the correct line. Is there anything that could be done. I have the latest version of node, node 0.10
0
votes
1answer
19 views

How to automatically compile client side CoffeeScript files with Node.js / Express

As the title says I'm trying to automatically compile the public static coffeescript files on page load, rather than having to compile them myself and use the .js files, how might I achieve this, I'm ...
1
vote
0answers
22 views

CoffeeScript loose compilation

Is there a way to compile CoffeeScript source loosely ignoring minor syntax errors like: variable = or object.? Is it possible out-of-the-box with stock compiler or some other compiler implementation? ...
0
votes
0answers
24 views

can't solve max call stack size error with strange behavior in jquery, javascript, coffeescript

I have the following plugin I am writing for redactor to add autocomplete to the insert link modal. I am using the TextExt library to do this. The following code shows this effort: I believe I've ...
0
votes
1answer
12 views

Cakefile build task error

I am trying to build the code given as TODO example in spine framework. I have installed coffescript using npm, and cake builder is included to it. When I navigate to Cakefile dir, and execute cake ...
0
votes
1answer
18 views

How do I auto-compile .coffeescript with Node.js?

I enjoy writing my stack in CoffeeScript, I'm just wondering how I can get it to auto compile at run time with Node.js so I don't have to manually compile every coffee file I edit and move the .js ...
4
votes
1answer
32 views

angularjs - HTTPpromise does not execute when JSONP is returned

I am trying to get a stock quote from yahoo's api and I am using angular's $http.jsonp method. The goal is when the result comes back, to have the app go to the this route: '/stocks/show_stock'. I am ...
1
vote
0answers
14 views

jQuery Endless page with will_paginate not working in Rails

I'm trying to implement the endless page functionality shown in Railscasts episode 114. The pagination works great but the endless page functionality doesn't trigger at all. I don't see any errors; ...
1
vote
1answer
16 views

Compile coffeescript Ext.js Ext is not defined

I'd like to use coffeescript in an Ext.js project. What do I have to do in order to make the compiler to know the Ext namespace? Whenever I compile an ext-js.coffee with node I get the error Ext is ...
0
votes
0answers
10 views

Nock intercepts the HTTP POST requests and dies during testing Mocha/Node.js module in CoffeeScript

I am wondering if you have experienced the situation where the 'nock' module intercepts the http request but stops without any logging...at least, that appears to me. I may be wrong. Here is the test: ...
0
votes
1answer
6 views

how do I modify a mocha reporter before a grunt test run?

I have grunt set up with mocha. It's running fine, but I'd like to get a more detailed report if a test fails from time to time. Naturally I'd just like to run grunt detailedTest instead of modifying ...
0
votes
1answer
13 views

Call a Coffeescript function with .lazy() from sugar.js

I'd like to call a Coffeescript function multiple times. Since the computation is CPU intensive for ~100 iterations, i want to use sugar.js "lazy()" http://sugarjs.com/api/Function/lazy So, my ...
0
votes
0answers
6 views

rooms are empty shortly after a socket has joined a room

I'm testing a wrapper around socket.io that manages rooms etc. It's pretty thin. I'm testing cross-room communication; making sure messages emitted to a room don't get sent to the wrong place. The ...
0
votes
1answer
23 views

knockout formatting of text

I have a knockout string in CoffeeScript used to format elements of the currencyText class. I need to also make the font bold. How to I take this code and add the bold feature? ...
2
votes
2answers
47 views

JavaScript object properties count limit, deleting oldest updated ones

I would like to implement a size limit for JavaScript objects and their properties count. What I need is to delete oldest updated one when a new property is added to an object. Consider the following ...
0
votes
0answers
17 views

In Meteor, why am I getting a “Could not synchronously run a task from a running task” error?

I've been plagued by this error from line 21 of fiber_stubs_client.js, which seems to execute 200 times in a row in Firefox console. I'm simply pulling something from the database. I've been all over ...
-1
votes
1answer
31 views

is it possible load a file.js.erb in <head></head>

I have a file.js.erb file in my views, but I need load this file in <head></head> layout. Is it possible load these files in <head></head> section? and if it's possible, How ...
0
votes
0answers
13 views

yeoman coffeescript autocompile - not getting any errors

I'm using yeoman and its coffeescript autocompile task, but when there's an error in *.coffee file, it doesn't get me any notification. Everything is set to default: grunt.initConfig({ yeoman: ...
0
votes
1answer
28 views

how can I make a $(document).ready using coffeescript to call my functions?

I am trying to find a way to "call" my functions, for example, I have this function initSlider = ($element)-> $element.find('.slider').each -> $this.slider ... some functions that ...
0
votes
2answers
32 views

Mongoose not registering model

I am currently using AngularJS with Express-Jade and Mongoose with Coffeescript. The directory structure is split into Model View Controller. This is the post.coffee in model mongoose = ...
0
votes
1answer
33 views

Compile CoffeeScript in the browser with extras/coffee-script.js

I would like to create a simple demo page that compiles CoffeeScript in the browser with the extras/coffee-script.js. However, when I add this source and write my CoffeeScript within my ...
2
votes
1answer
37 views

Test for existence and correct value on an if statement

With JavaScript or CoffeeScript, is there an easy way to test for the following: if (locals.messages.text === "somestring") { ... } Now this needs three things to be true: locals needs to exist, ...
0
votes
1answer
30 views

Graceful closing of node expressjs not working

I have a simple problem. I'm trying to shutdown an expressjs nodejs server so that current requests finish their responses and new requests get rejected altogether. I've wittled down my code to just ...
0
votes
1answer
21 views

How to Enable CoffeeScript Editing in VS2012 Update 2?

It used to work from Web Essentials until the author of that extension took out support. I'm completely up-to-date on Visual Studio updates, but for whatever reason, CoffeeScript does not get ...
2
votes
1answer
36 views

SignalR plus NancyFX : A simple but well worked example

There are a few examples of NancyFX being integrated with SignalR, for example Signalr & Nancyfx integration Since I am just starting out I want a simple, well worked canonical example that I ...
0
votes
0answers
32 views

Meteor app runs locally, but breaks when bundling for meteor deploy

While deploying my app to meteor.com, i get the following message: Bundling... Errors prevented deploying: unexpected OUTDENT unexpected OUTDENT Thing is, it runs fine locally. I've been looking ...
0
votes
0answers
24 views

Loading Google Maps on backbone

I'm using backbone to develop a maps application. How do load the google script asynchronously without using the google loader? I'm trying to use $.getScript, but for some reason, the google global ...
1
vote
1answer
49 views

how to manipulate returned mongo collections / cursors in javascript (meteor.js)?

In working with Meteor.js and Mongo I use the find({some arguments}) and sometimes find({some arguments}).fetch() to return cursors and an array of matching documents respectively. What is the real ...
0
votes
2answers
27 views

binding values while looping in constructor CoffeeScript

I have decided to use CoffeeScript and i have been trying to convert Node.js module of mine to CoffeeScript. So, here is the code in JS: function Domain(obj){ var self = this; for (var key in ...
1
vote
1answer
29 views

Why is an identical Mocha test failing after the first one?

I have a class MyClass that accepts objects to attach to it as methods. These methods call MyClass.push to add data to the object's internal @_list array. The second of two identical test cases fails, ...
3
votes
1answer
28 views

Rails - Why jQuery Doesn't Load After Submitting My Form Remotely

For the sake of simplicity, I have a form that updates a partial. Nothing special there. Within the partial, I have a jQuery sortable list. Before updating the form, I can drag things around in the ...
0
votes
1answer
29 views

Using a variable as a hash key in Coffeescript

Let's say I have this hash in Coffeescript: exercises = stretchedPrayer: name: "Stretched Prayer" sound: "28-stretched-prayer" bandStretch: name: "Band Stretch" sound: ...
0
votes
2answers
50 views

How to call New variable Class Name in coffeescript without eval

So, I have a standard class that is extended by child classes. In some cases, I'm passing what child class to use through jQuery as a option instead of using the default standard class. Example: ...
0
votes
1answer
31 views

Dynamic file mapping with relative destination

This is a generic question about dynamic file mapping with Grunt.js, but for the example purpose, I'll be trying to build coffee files in a project with a dynamic structure : Here, I can have ...
0
votes
4answers
55 views

Javascript - set input field to 0 when clicked

I have list of input fields within a form tag <div class="angefragte_stunden_<%= hour.id%>"> <%= h.text_field :angefragte_stunden %> code output => <div ...
0
votes
1answer
9 views

Couchdb `Error: EXIT` error when using coffeescript functions

I'm getting error that looks like that, whenever any design document function is called Error: EXIT {{badmatch,[]}, [{couch_query_servers,new_process,3, ...
0
votes
0answers
14 views

TypeError when trying to require coffeescript dependency in couchdb desing document in validation function

I'm trying to use couchdb to create a simple webapp, I'm trying to use coffeescript and require statements at the same time in desing documents. I use erica to deploy the app. For now I just want a ...
0
votes
1answer
34 views

understanding module.exports in node.js

looking at code from https://github.com/twilson63/express-coffee/blob/master/src/config/index.coffee#L13 has the following: #### Config file # Sets application config parameters depending on `env` ...
0
votes
0answers
14 views

Change the output color of the coffeescript REPL (no yellow)

The coffee-script REPL by default prints its outputs in yellow, which is hardly readable when your background is white. Unfortunately, I couldn't find a way to configure it, but I don't want to change ...
0
votes
1answer
43 views

how can I test a ruby/rails variable on coffeescript?

How can I test a ruby variable in coffeescript? I'm updating a rails legacy application and trying to keep the closes of the original format I can in the first step. With .js.erb, I could simply do ...
1
vote
1answer
28 views

Remove/delete models from the end of a Backbone.Collection?

I'm trying to remove the last 100 models from a collection. Is there an easy way to just slice those off and remove/delete them or do I need to iterate through them and remove them? Right now i'm ...
0
votes
1answer
19 views

coffeescript can't find localStorage

I'm trying to teach myself coffeescript, but is falling short when trying to use localStorage. $ coffee detail_view.coffee ReferenceError: localStorage is not defined at isLoggedIn ...
0
votes
0answers
32 views

JQuery/Chosen on binding for DIV content change

I am loading a div's (called #display) content dynamically. Different buttons generate different #display content. I need all drop-down elements that are added (they can also be added dynamically from ...
0
votes
1answer
23 views

Dynamically generate new named class from string with coffeescript

I have looked around and have found a number of questions which approach using-a-string-to-define-the-class-name and dynamic-class-generation-in-coffeescript> but neither of them exactly address my ...
2
votes
1answer
41 views

Backbone View method not firing on first load

When entries/index is loaded, it should fire @collection.each(@appendEntry) with appends all entries in the collection to #entries, but nothing happens. If I submit a new entry, everything works fine. ...
0
votes
2answers
35 views

How to convert a function to an async.each function

I've a small problem with a function in a class of my nodejs/express server. I have the following function : @resolveServers = (url, servers, resolved) -> result = [] treatServer(url, server, ...
0
votes
1answer
43 views

fullcalendar process checkbox in a modal

I'm using Fullcalendar in a Rails app. I have a modal for entering data about the event. One field is an overtime boolean. HTML: <input type="checkbox" name="overtime" id="overtime" value="" ...
1
vote
2answers
36 views

MongoDB query from node.js (express-coffeescript-mongodb)

I'm new to database queries with noSQL databases and have a quick question. Essentially I want to retrieve the 'name' of all fields that have 'publishedImage' set to 'true'. I would like to store ...
0
votes
1answer
26 views

correct way to exclude certain characters from crypto.randomBytes

i have the following code, based on http://nodejs.org/docs/v0.6.9/api/crypto.html#randomBytes crypto.randomBytes 32, (ex, buf) -> user.tokenString = buf.toString("hex") user.tokenExpires = ...

1 2 3 4 5 69