How to use Angular 2 (or 4) framework from CDN

angular, javascript

Solution

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

Problem

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 Angular 2?

Original source

Related problems