Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any CDN sources for backbone.js and also underscore.js to use in our projects?

share|improve this question
1  
Not a direct answer to your question but I'd like people to know that there is an issue on Google Groups code.google.com/p/google-ajax-apis/issues/detail?id=528 So if you came here looking for the CDN and you have google account please upvote this issue by clicking on a star to the left of the issue title. I hope some day google will take underscore and backbone into consideration. Thank you. – inst Sep 26 '12 at 7:32

2 Answers

up vote 120 down vote accepted

http://www.cdnjs.com hosts a lot of less popular JavaScript frameworks, including:

share|improve this answer
6  
how much trusted it is for prod environments..? – sandeept Feb 25 at 12:29
1  
digg.com uses cdnjs. Check out some more cdnjs stats and users: w3techs.com/technologies/details/cd-cdnjs/all/all – Ryan Kirkman May 8 at 5:10

http://www.jsdelivr.com/ is also a good alternative for less popular frameworks

  • : //cdn.jsdelivr.net/backbonejs/0.9.10/backbone-min.js
  • : //cdn.jsdelivr.net/underscorejs/1.4.3/underscore-min.js

Also in most cases it is a good idea to omit the protocol in the URL for JavaScript source.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.