Book Image

Mastering Angular Components - Second Edition

By : Gion Kunz
Book Image

Mastering Angular Components - Second Edition

By: Gion Kunz

Overview of this book

Mastering Angular Components will help you learn how to invent, build, and manage shared and reusable components for your web projects. Angular components are an integral part of any Angular app and are responsible for performing specific tasks in controlling the user interface. Complete with detailed explanations of essential concepts and practical examples, the book begins by helping you build basic layout components, along with developing a fully functional task-management application using Angular. You’ll then learn how to create layout components and build clean data and state architecture for your application. The book will even help you understand component-based routing and create components that render Scalable Vector Graphics (SVG). Toward the concluding chapters, you’ll be able to visualize data using the third-party library Chartist and create a plugin architecture using Angular components. By the end of this book, you will have mastered the component-based architecture in Angular and have the skills you need to build modern and clean user interfaces.
Table of Contents (12 chapters)

Leveraging the power of SVG

SVG has been a part of the Open web platform standards since 1999, and was first recommended in 2001, under the SVG 1.0 standard. SVG is a consolidation of two independent proposals for an XML-based vector image format. Precision Graphics Markup Language (PGML), mainly developed by Adobe and Netscape, and Vector Markup Language (VML), which was mainly represented by Microsoft and Macromedia, were both different XML formats that served the same purpose. The W3C consortium declined both of the proposals in favor of the newly developed SVG standard, which unified the best of both worlds into a single standard:

Timeline showing the development of the SVG standard

All three standards had a common goal, which was to provide a format for the web to display vector graphics in the browser. SVG is a declarative language that specifies graphical objects using...