Angular on a modern SharePoint page (part 3)
In my previous article , we have created an angular element, which reads data from our SharePoint list and displays it using bootstrap 5. You can get the final project code here . And now we are ready to move forward and create the SPFx web part to host our element on a modern SharePoint page. Before we begin We will use SharePoint 2019 as our hosting platform. During writing this post and creating the demo project I have some issues with the different versions of the different tools. I have found it very useful to use Node Version Manager (nvm), which helps you to use different versions of the node environment on the same computer. You can download it for the Windows OS here . So, what we will need to create the SPFx web part: node - version 10.24.1 gulp - version 3.9.1 yo - version 3.1.0 microsoft/generator-sharepoint - version 1.12.1 (the latest version, supporting SharePoint 2019) Let's install all that we need on our development machine. To get the proper version of the node,...