Angular

tags:  javascript, typescript, angular

Good practices

  • Use standalone components instead of NgModules.
  • Use control flow in templates instead of NgIf directive.
  • Use input for passing data parameters to components instead of @Input.
  • Use public attributes for components and avoid using public keyword to enforce concision. [TODO: add references]

TODO

  • How to solve children routing inside standalone components?

Issues

References