Skip to content Skip to sidebar Skip to footer

How To Use Angular 2 (or 4) Framework From CDN

In Angular 1.x we had the option of linking to Angular framework using a CDN (https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js). Is that option available in An

Solution 1:

You can try a CDN like unpkg

Load System JS and ES6:

<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script>

Example with plnkr

Example with JSFiddle


Post a Comment for "How To Use Angular 2 (or 4) Framework From CDN"