Just started a demo Angular2 project (no previous experience with Angular1/AngularJS. Have followed and extended from the online quickstart and tutorials, and all was fine. Howe
Here is a working plunkr describing how to mix Angular1 and Angular2 elements:
An important point is to bootstrap
your main component on the UpgradeAdapter
. This way all elements are available in providers (services / factories) and in directives (components / directives):
upgrade.bootstrap(document.body, ['heroApp']);
These two answers could help you: