Mobile app version of vmapp.org
Login or Join
Murray432

: Is there a CDN for backbone.marionette? Getting started with Backbone and Marionette, I was about to copy the file at https://github.com/marionettejs/backbone.marionette/blob/master/lib/backbone.marionette.js

@Murray432

Posted in: #Cdn

Getting started with Backbone and Marionette, I was about to copy the file at github.com/marionettejs/backbone.marionette/blob/master/lib/backbone.marionette.js to my local server, but wondered if there was a CDN version of it.

For Underscore and Backbone dev, I'm including these two files, respectively:
documentcloud.github.com/underscore/underscore-min.js documentcloud.github.com/backbone/backbone-min.js
Is there a similar URL for backbone.marrionette.js?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Murray432

2 Comments

Sorted by latest first Latest Oldest Best

 

@LarsenBagley505

Marionette is available on www.cdnjs.com search for it or just use //cdnjs.cloudflare.com/ajax/libs/backbone.marionette/0.10.2/backbone.marionette.min.js

10% popularity Vote Up Vote Down


 

@Pope3001725

Github is not a CDN. Don't use it like that. Also, don't include the when using a CDN domain or else on SSL pages you will get security errors.

You could simply use src="//documentcloud.github.com/backbone/backbone-min.js" which will be HTTP on HTTP requests and HTTPS on SSL requests.

Now as for CDN, take a look at CloudFlare
CDNJS.com. Its not Akamai, but it's free.

Here is a link to the framework you were interested in
//cdnjs.cloudflare.com/ajax/libs/backbone.marionette/0.10.2/backbone.marionette.min.js

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme