Google CDN list of hosted JavaScript libraries

Now a days, website is every business need. But a super fast website is important one i.e website should loads quickly. Website speed also a ranking factor  in Google SERP. Content Delivery Network are widely used to boost website page speed . For example, if a user visits website from UK then it takes times to process request from other location to processed location. But in case of CDN service, we got to see cache copy of webpage from nearest CDN server.

Most website are using Google, Microsoft etc hosted js libraries. In this post, i will provide most of the hosted JavaScript libraries in Google CDN. Google only accepts latest libraries and used only stable version, directly work with the key stakeholders.
googleCdn

Jquery  –

 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>

Angular JS

 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>

Angular Material

<script src="https://ajax.googleapis.com/ajax/libs/angular_material/0.9.0/angular-material.min.js"></script>

DOJO –  

 <script src="https://ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojo/dojo.js"></script>

Ext core-

 <script src="https://ajax.googleapis.com/ajax/libs/ext-core/3.1.0/ext-core.js"></script>

Jquery 1.x  –  

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

Jquery -2.x –

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>

Jquery Mobile –

<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.js"></script>

Jquery Ui –  

<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>

Moo tools –

 <script src="https://ajax.googleapis.com/ajax/libs/mootools/1.5.1/mootools-yui-compressed.js"></script>

Prototype Js –  

<script src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.2.0/prototype.js"></script>

script.aculo.us

 <script src="https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js"></script>

SPF –

  <script src="https://ajax.googleapis.com/ajax/libs/spf/2.2.0/spf.js"></script>

SWFObject  –

 <script src="https://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>

three.js

<script src="https://ajax.googleapis.com/ajax/libs/threejs/r69/three.min.js"></script>

Web Font loader

 <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>

 

There are some pros and cons also to use these cdn hosted js or css libraries. We will discuss later in next post.

 

Source of Libraries – https://developers.google.com/speed/libraries/

 

 

Leave a Reply