docs(angular): add using libraries content (#6948)

pull/6977/head
J. Degand 2 months ago committed by GitHub
parent f94c09bcf3
commit 86c903305a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      src/data/roadmaps/angular/content/using-libraries@YHV5oFwLwphXf1wJTDZuG.md

@ -1 +1,8 @@
# 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 <lib_name>` 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/)
Loading…
Cancel
Save