This is the code repository for Mastering Angular 2 Components, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.
Through this book, you will learn how to use Angular 2 and its component-based architecture in order to develop modern user interfaces. A new holistic way of thinking about UI development will be established throughout this book, and you will discover the power of Angular 2 components through many examples. This book is based on Release Candidate 1(RC1) of Angular 2.
All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.
Chapters 1 and 12 have no code files.
The code will look like the following:
class Fruit {
constructor(name)
{
this.name = name;
}
}
const apple = new Fruit('Apple');
This book will need a basic installation of Node.js on your Windows, Mac, or Linux machine.
Click here if you have any feedback or suggestions.