Angular Best Practices
Getting Setup
Naming
Keep with the style guide. E.g. catalog.component.ts which has CatalogComponent inside.
File Structures
LIFT,
- Locate Code Quickly
- Identify code at a glance
- Flattest structure possible
- Try to be DRY
Keep with the style guide. E.g. catalog.component.ts which has CatalogComponent inside.
LIFT,