Book Image

Learning Angular - Second Edition

By : Christoffer Noring, Pablo Deeleman
Book Image

Learning Angular - Second Edition

By: Christoffer Noring, Pablo Deeleman

Overview of this book

<p>The latest version of Angular comes with a lot of new features that help you to make your applications smaller and faster. This book will show you how to set up an Angular project, and you’ll build Angular components right from the beginning.</p> <p>Moving on, you’ll explore and work with the components to build your app. Next, you’ll find out more about TypeScript and see how to use it to build apps in the best way possible. You’ll then be introduced to the building blocks - Properties, Events, Directives, and Pipes - and how it can be used to implement and enhance the components.</p> <p>Additionally, you’ll be using Angular components to organize your components in a scalable way. Then you’ll understand how to get data in your app and add navigation to it. Furthermore, you’ll deep dive and work with Forms, Authentication, and see how Material design will help you make your app beautiful in just a few short lines of code. Lastly, you’ll see how to use animating components with Angular, and test and debug the app.</p> <p>All in all, the overall mission is to give you a great start when developing apps using Angular and TypeScript.</p>
Table of Contents (21 chapters)
Title Page
Credits
About the Authors
www.PacktPub.com
Customer Feedback
Preface
2
IDEs and Plugins

The admin tools


The admin tools can be found at https://firebase.google.com/. Once there, in the top-right corner, click on the GO TO CONSOLE link. You should have a Gmail account. If you do, then you have a Firebase account as well, and you only need to set up the database. Then, you should choose to create a project; give it a title of your choice and your location.

It should look like this:

>

Once you've done this, you will be taken to the admin page, which looks like this:

The preceding screenshot displays the left menu, and then to the right, you would have a content pane. What content is displayed on the right varies based on what you choose on the left. As you can see, you can control a lot of things. Your most important options when starting to craft your database are:

  • Authentication: Here, you set up what kind of authentication you want: no authentication, username/password, social logins, and so on.
  • Database: Here, you design what the database should look like. There are also some...