Tuesday, May 29, 2018

Angular

Start Angular App: ng serve -o or npm start
Format Bindings: Use pipes.


The Angular team recommends moving filtering and sorting logic in to the component itself.

Angular Module Structure

  • Root application module (AppModule)
  • Feature modules (i.e. ProductModule)
  • Shared module (SharedModule) - Contains common features used across modules.
  • Core module (CoreModule) only imported once and contains your services.
  • (optional) Routing modules

No comments:

Post a Comment