前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Angular workspace默认的packages

Angular workspace默认的packages

作者头像
Jerry Wang
发布2020-08-11 16:14:54
5540
发布2020-08-11 16:14:54
举报

https://angular.io/guide/npm-packages

使用Angular CLI命令行ng new创建一个新的Angular项目后,目录结构如下:

展开node_modules文件夹,进而展开@angular子文件夹:

  • @angular/animations:Angular’s animations library makes it easy to define and apply animation effects such as page and list transitions.
  • @angular/common: The commonly-needed services, pipes, and directives provided by the Angular team. The HttpClientModule is also here, in the @angular/common/http subfolder.
  • @angular/compiler:Angular’s template compiler. It understands templates and can convert them to code that makes the application run and render. Typically you don’t interact with the compiler directly; rather, you use it indirectly via platform-browser-dynamic when JIT compiling in the browser.
  • @angular/core:Critical runtime parts of the framework that are needed by every application. Includes all metadata decorators, Component, Directive, dependency injection, and the component lifecycle hooks.
  • @angular/forms: Support for both template-driven and reactive forms. For information about choosing the best forms approach for your app, see Introduction to forms.
  • @angular/ platform‑browser: Everything DOM and browser related, especially the pieces that help render into the DOM. This package also includes the bootstrapModuleFactory() method for bootstrapping applications for production builds that pre-compile with AOT.
  • @angular/ platform‑browser‑dynamic: Includes providers and methods to compile and run the app on the client using the JIT compiler.
  • @angular/router: The router module navigates among your app pages when the browser URL changes.

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-08-10 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档