Did anyone try to use Angular2 for the custom development of webresource in Dynamics CRM 2016? I looked up some resources but all I can find is how to include AngularJS like here
Asked
Active
Viewed 962 times
1 Answers
2
Yes I've created a quickstart project which aims to support building single page applications for Dynamics CRM in Angular. The project uses ADAL to authenticate with Dynamics.

Dave Clark
- 2,243
- 15
- 32
-
And you added all the .js libraries as webresources in CRM? (this is my first CRM development project) – Bianca Jul 20 '17 at 14:40
-
1@Bianca I would use a tool like webpack to compile all of my .js files into one .js file and my .css files into one .css file. Third party .js files like angular and bootstrap however, I'd deploy as their own minified files to CRM. – Dave Clark Jul 20 '17 at 15:20
-
Thanks for the clarification! I'm coming from a custom development background and felt a bit lost within the constraints of CRM custom web resources development. I'm looking into webpack and also SystemJS and I saw that the alternatives are very nicely explained on the Angular site -> https://angular.io/guide/deployment#webpack. – Bianca Jul 24 '17 at 07:23