I'm wondering how you import components hosted somewhere else, like a CDN.
If I got a link to someone's CDN for example: <script src="a-cdn-link.js"></script>
where a component named MyComponent
resides, in my own component file, what would I use as the import path?
I know that you can use the framework itself if included via a CDN but I don't understand how they make it so that you fetch from the correct path. I haven't tried using the CDN to import angular2 so I'm not quite sure exactly how it works.
Would you have to declare a path via SystemJS or another similar service?
Could do with some enlightment on the matter.