Actually the angular project works in a iframe to embebed a angular project in html pages, and works well!
http://localhost/example
But my boss ask me to we can get more far. He takes the idea from youtube api, for a better and correct integration
https://developers.google.com/youtube/iframe_api_reference
As you can see youtube api do this:
- loads the IFrame Player API code asynchronously
- calls functions when the video player is ready, and this code have other code that invoque an api with the method onYouTubeIframeAPIReady()
We want something more simple.
- load the first min.js code async
- get the resources to make something like this:
var example = new Example();
example.initProject(); // and remplaze an div tag with angular project
the html will must look something like this:
<div id="angular-app"></div>
http://localhost/some-code.min.js
I try to find examples for this in angular to try to do my task.
Are they have some examples to help me o give some documentation to do this?
I think that there exist some npm library that makes this for you.. I not shure
Thanks a lot
Source: Angular Questions