Underscore.js Website Source code on Github Annotated source code IRC: #documentcloud on freenode
24
votes
1answer
1k views
How can I create annotated source code like underscore.js?
I absolutely love the annotated source code that accompanies the underscore.js library: http://documentcloud.github.com/underscore/docs/underscore.html
How did they do that?
Is there a script ...
19
votes
1answer
3k views
Loading backbone and underscore using requirejs
I'm trying to load backbone and underscore (and jquery) with requirejs. With the latest versions of backbone and underscore, it seems kind of tricky. For one, underscore automatically registers ...
19
votes
2answers
1k views
Is there a CRUD generator for Mongoose and Node.js and Underscore? Or a CRUD generator for a similar stack?
Is there a CRUD generator for Mongoose and Node.js and Underscore? Or a CRUD generator for a similar stack?
I want to generate something like this:
...
17
votes
2answers
5k views
Using the Underscore module with Node.js
I've been learning about node.js and modules, and can't seem to get the Underscore library to work properly... it seems that the first time I use a function from Underscore, it overwrites the _ object ...
14
votes
2answers
2k views
backbone.js - events, knowing what was clicked
In one of my backbone.js view classes, I have something like:
...
events: {
'click ul#perpage span' : 'perpage'
},
perpage: function() {
// Access the text of the span that was clicked here
...
14
votes
3answers
2k views
Sorting strings in reverse order with backbone.js
I'm trying to sort a Backbone.js collection in reverse order. There are previous replies on how to do this with integers, but none with strings.
var Chapter = Backbone.Model;
var chapters = new ...
13
votes
4answers
1k views
How is a functional programming-based JavaScript app laid out?
I've been working with node.js for a while on a chat app (I know, very original, but I figured it'd be a good learning project). Underscore.js provides a lot of functional programming concepts which ...
12
votes
1answer
1k views
need explanation of the _.bindAll() function from Underscore.js
I've been learning some backbone.js and I've seen plenty of instances where _.bindAll() is used. I have read through the entire backbone.js and underscore.js documentation page to try to get a sense ...
10
votes
3answers
5k views
How to use underscore.js as a template engine?
I'm trying to learn about new usages of javascript as a serverside language and as a functional language. Few days ago I heard about node.js and express framework. Then I saw about underscore.js as a ...
9
votes
1answer
295 views
Why can't I extend everyone's pocket in nowjs?
I'm trying to provide functions in everyone's pocket of nowjs. I'd like to do so by _.extending everyone's pocket, i.e. everyone.now. For some reason which I cannot understand, _.extend fails to ...
8
votes
2answers
2k views
How to use if statements in underscore.js templates?
I'm using the underscore.js templating function and have done a template like this:
<script type="text/template" id="gridItem">
<div class="griditem <%= gridType %> <%= ...
8
votes
5answers
797 views
Underscore.js: how to chain custom functions
Using Underscore.js, I can write the following which returns 42:
_([42, 43]).chain()
.first()
.value()
I have custom function, not part of Underscore.js called double():
function ...
7
votes
2answers
1k views
backbone.js - views within views and managing events
What's a good way to organize views? Let's say I have a div that will contain a view from an admin panel perspective of users - there will be a list of users along with options to choose how many to ...
6
votes
2answers
731 views
External template in Underscore
I use Underscore template. It is possible to attach a external file as template?
In Backbone View I have:
textTemplate: _.template( $('#practice-text-template').html() ),
initialize: function(){ ...
6
votes
2answers
200 views
Interpolate inside html attributes with Underscore.js
I'm building an application using Backbone.js, Underscore.js, HAML, and Coffeescript.
The problem I'm having is getting variables to interpolate inside of html element attributes.
<% ...
6
votes
2answers
551 views
Sub Class a Backbone.View Sub Class & retain events
I have a generic subclass of Backbone.View which has a close event listener.
var GenericView = Backbone.View.extend({
events : {
"click .close" : "close"
},
close : function () ...
6
votes
4answers
666 views
backbone.js - how and when to show a spinner
Is there any sort of hooks in backbone where I can easily say "whenever any of the collections is fetching data, show the spinner, hide it when they're done"?
I have a feeling it will be more ...
6
votes
3answers
2k views
backbone.js - handling if a user is logged in or not
Firstly, should the static page that is served for the app be the login page?
Secondly, my server side code is fine (it won't give any data that the user shouldn't be able to see). But how do I make ...
6
votes
3answers
993 views
backbone.js - getting extra data along with the request
I have a collection which holds some of the users. Some information that is needed is how many total there are, how many pages, etc. How do I pass these back to the client? Or do they have to come ...
6
votes
2answers
642 views
Which Javascript functional library: Underscore or wu.js or Functional or …?
I am building a node.js app and wondering which javascript lib to add to my repertoire. Current short list includes:
Underscore
wu
Functional
Bonus points for something that works in the browser ...
5
votes
2answers
608 views
Best way to load asynchronously undescore templates
I'm planning to use backbone.js and underscore.js for creating website, and I will have lots of underscore templates:
<script type="text/template" id="search_template">
<p id="header">
...
5
votes
1answer
2k views
each loop in underscore.js template. WTF?
I'm doing something wrong here but I can't see it! Im trying to loop an array in a underscore template. It doesn't work though so I'm missing something, Here's my code, my templates work fine ...
5
votes
3answers
383 views
underscore.js - Is there a function that produces an array thats the difference of two arrays?
Looking for a function in underscore.js that will take 2 arrays and return a new array of unique values? Something like _without
_.without([0, 1, 3, 9], [1, 3]);
I would like => [0,9] returned
...
4
votes
1answer
245 views
Why underscore.js removed support for AMD
1.3.0 — Jan. 11, 2012 Removed AMD (RequireJS) support from Underscore. If you'd like to use Underscore with RequireJS, you can
load it as a normal script, wrap or patch your copy, or download a
...
4
votes
1answer
83 views
Trying to understand underscore.js source - call and apply used in library
In Jeremy Ashkenas's awesome Underscore.js library, I tried to understand one thing about the source file. I do not understand this:
args = slice.call(arguments, 2);
Note: here slice is a local ...
4
votes
2answers
65 views
negative object length possible in JavaScript or underscore.js? meaning?
I was looking at the source code for the Underscore.js library, specifically for the map method (around line 85 on that page, and copied here):
_.map = function(obj, iterator, context) {
var ...
4
votes
3answers
238 views
What is the best way to include jQuery, Underscore, and Backbone as AMD modules using require.js?
I've seen many variations to loading modules which do not support AMD yet, and I would like to know what is the best practice to do so.
Eventually, I would like to write modules like this:
...
4
votes
1answer
332 views
Backbone router won't fire events — losing will to live
I've been stuck banging my head against the Backbone.router for about 2 days and have not had any progress at all. I'm new to backbone and I think I've now read everything I can find to no avail.
...
4
votes
1answer
221 views
pure css slider
I'm trying to get one pure css slider (http://jsfiddle.net/trN4p/1/) to operate within another pure css slider on the same document/page using :target for navigation with independent control for each ...
4
votes
1answer
1k views
Backbone.js Jade and looping over model
I am getting a little confused about templating using backbone with jade/underscore.
I have a backbone model with a couple of arrays in it and am not sure how to render the array attributes. I could ...
4
votes
1answer
1k views
Filtering a Backbone Collection returns an array of Models
Sample Code:
this.books = this.getBooksFromDatabase();
this.publishedBooks = this.books.filter(function(book) {
return book.get("isPublished") === "1";
});
Here lies the problem:
...
4
votes
1answer
913 views
debugging underscore.js templates is difficult without line numbers
I am converting a rather large php template (page with basic logic in it) into an underscore.js template.
The problem is that I keep having errors in it, and it's minified "compiled" version doesn't ...
4
votes
1answer
269 views
In JavaScript's Underscore.js library what does 'context' mean and how do I use it?
I'm reading the documentation for the Underscore.js library from DocumentCloud. Many of the functions take an optional context argument which is not explained. My guess, as one familiar with Ruby is ...
4
votes
2answers
2k views
underscore.js _.each(list, iterator, [context]) what is context?
New to underscore.js. I am pretty much looking for an example on how to use [context]/[context] inside the iterator.
3
votes
4answers
51 views
Is there any jQuery build available that's optimized for use with underscore.js?
I'm using jQuery and underscore.js for my personal project and I love both frameworks. The problem is that they heavily overlap at functionality.
For example there are $.each and _.each, $.extend ...
3
votes
2answers
193 views
What are the pros/cons of using mustache with Backbone.js?
I'm learning backbone.js for a Rails 3 application I'm working on. Backbone uses underscore which, I believe, has its own template engine built in.
I've read good things about mustache but was ...
3
votes
3answers
1k views
Very basic Backbone/Underscore via Require.js issue driving me batty
I am attempting to implement an EXTREMELY basic test that uses jquery, underscore.js and backbone.js loaded via require.js and for some reason I just cannot seem to get everything lined up properly. ...
3
votes
1answer
378 views
Underscore.js templates in backbone.js adding a div around a tr
I am using underscore.js's templating capabilities from backbone.js, I have the following template that I define in my page like this:
<script type="text/template" id="businessunit_template">
...
3
votes
2answers
184 views
Underscore each method returning values
This is a stripped down example of what I'm trying to do. I'm trying to get my wrapper function myElements to return the elements coming from the underscore each iterator. I can trace out the values ...
3
votes
3answers
336 views
Place client-side JavaScript templates in HTML or JavaScript?
Should client-side templates like the following (using underscore's templating engine):
<p class="foo"><%= bar %></p>
be placed in an separate HTML file, or a separate JavaScript ...
3
votes
1answer
649 views
Rails with Underscore.js Templates
I was trying to use underscore.js templates for templating in a rails 2.3 app which does not have jammit as an asset packager.
Here is the simple Template:
<script type="text/template" ...
3
votes
4answers
104 views
What does `>> 1` mean?
I'm reading through the underscore.js code. I found this:
var mid = (low + high) >> 1;
What does >> 1 do? Why is it useful?
3
votes
4answers
1k views
How to make Backbone.js Collection items Unique?
Say I have these Backbone.js Model:
var Truck = Backbone.Model.extend({});
var truck1 = new Truck();
var truck2 = new Truck();
truck1.set("brand", "Ford");
truck2.set("brand", "Toyota");
...
3
votes
1answer
648 views
backbone.js - controller properties from a view
I have a controller property called authenticated which defaults to false. However, in my login view I need to be able to set it to true. Also, in my logout view I need to be able to set it to false. ...
3
votes
2answers
779 views
Underscore.js Templates Within JSP
Underscore.js templates use <%= %> for variable interpolation. Unfortunately that is also interpreted in a JSP (or GSP). Is there a way to use Underscore.js templates within JSPs?
3
votes
1answer
2k views
backbone.js - rendering view
My ListClass looks like this:
var ListView = Backbone.View.extend({
initialize: function() {
this.render();
},
events: {
'click ul#perpage span': 'setperpage'
},
...
3
votes
2answers
165 views
python string formatting in javascript
Is there a better way to do this? I'm using the underscore js lib here, which is where the _. comes from. I'm used to this sort of procedure to format strings in python and i'd like something simple ...
3
votes
2answers
510 views
Underscore behavior with Bind
Reading through the source at:
http://documentcloud.github.com/underscore/underscore.js
This is the _bind method so frequently used (I've removed the native check for clarity)
_.bind = ...
3
votes
2answers
971 views
I think I am not using Backbone JS's views correctly?
I've just started using Backbone (and Underscore) JS. We are doing a big iPad HTML5 application and it needs to work all client side. The project needs structure and Backbone seems to be a good fit. ...
2
votes
2answers
38 views
Reorder Backbone collection in initialize
I'm trying to find a way to reorganize a Backbone collection in the initialize function of a view. In my collection I have models that have attributes like:
id: ...,
name: ...,
sort: 2,
parent: 45
...