
Angular Cookbook
By :

This is one of the advanced recipes in this book, especially for those of you who have already been working with Angular for a while. In this recipe, we'll not only create some popovers using the CDK Overlay API, but we'll also make them pointy, just like tooltips, and that's where the fun lies.
The project for this recipe resides in chapter09/start_here/pointy-little-popovers
. Proceed as follows:
npm install
to install the dependencies of the project. ng serve -o
. This should open the app in a new browser tab, as follows:
Figure 9.6 – The pointy-little-popovers app running on http://localhost:4200
Now that we have the app running locally, let's see the steps of the recipe in the next section.
Our app has a list of users that we can scroll through on...