Next steps: tools and techniques

Once you have understood the basic building blocks, you can begin to learn more about the features and tools that are available to help you develop and deliver Angular applications. Angular provides a lot more features and services that are covered in this documentation.

Responsive programming tools

  • Lifecycle hooks: Tap into key moments in the lifetime of a component, from its creation to its destruction, by implementing the lifecycle hook interfaces.

  • Observables and event processing: How to use observables with components and services to publish and subscribe to messages of any type, such as user-interaction events and asynchronous operation results.

Client-server interaction tools

  • HTTP: Communicate with a server to get data, save data, and invoke server-side actions with an HTTP client.

  • Server-side Rendering: Angular Universal generates static application pages on the server through server-side rendering (SSR). This allows you to run your Angular app on the server in order to improve performance and show the first page quickly on mobile and low-powered devices, and also facilitate web crawlers.

  • Service Workers: A service worker is a script that runs in the web browser and manages caching for an application. Service workers function as a network proxy. They intercept outgoing HTTP requests and can, for example, deliver a cached response if one is available. You can significantly improve the user experience by using a service worker to reduce dependency on the network.

Domain-specific libraries

  • Animations: Animate component behavior without deep knowledge of animation techniques or CSS with Angular's animation library.

  • Forms: Support complex data entry scenarios with HTML-based validation and dirty checking.

Support for the development cycle

  • Testing Platform: Run unit tests on your application parts as they interact with the Angular framework.

  • Internationalization: Angular's internationalization (i18n) tools can help you make your app available in multiple languages.

  • Compilation: Angular provides just-in-time (JIT) compilation for the development environment, and ahead-of-time (AOT) compilation for the production environment.

  • Security guidelines: Learn about Angular's built-in protections against common web-app vulnerabilities and attacks such as cross-site scripting attacks.

Setup and deployment tools

  • Setup for local development: Learn how to set up a new project for development with QuickStart.

  • Installation: The Angular CLI, Angular applications, and Angular itself depend on features and functionality provided by libraries that are available as npm packages.

  • Typescript Configuration: TypeScript is the primary language for Angular application development.

  • Browser support: Learn how to make your apps compatible across a wide range of browsers.

  • Deployment: Learn techniques for deploying your Angular application to a remote server.

© 2010–2018 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v5.angular.io/guide/architecture-next-steps