What Is Angular?
What Is Angular?
What is Angular?
• Most popular frontend framework to create maintainable web applications.
• Completely re-write of AngularJS.
• Developed by Google.
• Angular CLI enables you to create things faster.
Do’s:
✓ Always use Routing and Modules.
✓ Prefer Routing Guards and JWT for Authentication & Security.
✓ Always manipulate "application data" by writing the "application logic" in the components.
✓ Always place global css styles in "styles.css" file and local css styles in "component.css" file.
✓ Always write "REST-API calls (AJAX)" and Business Logic in Services only; and return Observables
from Services.
✓ Prefer to use Bootstrap [or equivalent].
✓ Always use CSS-pre processor, such as SCSS.