diff --git a/src/data/roadmaps/angular/content/using-libraries@YHV5oFwLwphXf1wJTDZuG.md b/src/data/roadmaps/angular/content/using-libraries@YHV5oFwLwphXf1wJTDZuG.md index e781ac779..fe9c3ab20 100644 --- a/src/data/roadmaps/angular/content/using-libraries@YHV5oFwLwphXf1wJTDZuG.md +++ b/src/data/roadmaps/angular/content/using-libraries@YHV5oFwLwphXf1wJTDZuG.md @@ -1 +1,8 @@ -# Using Libraries \ No newline at end of file +# Using Libraries + +Libraries are published as `npm packages`, usually together with schematics that integrate them with the Angular CLI. To integrate reusable library code into an application, you need to install the package and import the provided functionality in the location you use it. For most published Angular libraries, use the `ng add ` Angular CLI command. A published library typically provides a `README` file or other documentation on how to add that library to your application. A library is able to be updated by the publisher, and also has individual dependencies which need to be kept current. To check for updates to your installed libraries, use the `ng update` Angular CLI command. + +Visit the following resources to learn more: + +- [@official@Angular Official Docs - Using Libraries](https://angular.dev/tools/libraries/using-libraries) +- [@official@npm](https://www.npmjs.com/) \ No newline at end of file