Is there any CDN sources for backbone.js and also underscore.js to use in our projects?
相关问题
- Backbone.js PushState routes .htaccess only workin
- Updating a LayoutView's Model
- Disable Backbone.js hashes entirely, but keep push
- Is there an easy way to distribute a Flask server
- Get all keys of a JavaScript object whose value is
相关文章
- MVC CDN fallback for Style Bundle
- How to use Underscore.js filter with an object?
- Get all models in backbone collection where attrib
- how to use a CDN inside a React component
- How can I dynamically set a className for a Backbo
- Nesting Views within Views in backbone js
- Backbone-relational hasmany best practices
- JavaScript error: “is not a constructor”
http://www.cdnjs.com hosts a lot of less popular JavaScript frameworks, including:
backbone.js:
//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.0.0/backbone-min.js
(HTTP | HTTPS)underscore.js:
//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js
(HTTP | HTTPS)For convenience, here are the script tags:
Backbone.js Underscore.jshttp://www.jsdelivr.com/ is also a good alternative for less popular frameworks
Also in most cases it is a good idea to omit the protocol in the URL for JavaScript source.
More on http://www.paulirish.com/2010/the-protocol-relative-url/