Book Image

MongoDB, Express, Angular, and Node.js Fundamentals

By : Paul Oluyege
Book Image

MongoDB, Express, Angular, and Node.js Fundamentals

By: Paul Oluyege

Overview of this book

MongoDB, Express, Angular and Node.js Fundamentals is a practical guide to the tried-and-true production-ready MEAN stack, with tips and best practices. The book begins by demystifying the MEAN architecture. You’ll take a look at the features of the JavaScript libraries, technologies, and frameworks that make up a MEAN stack. With this book, you'll not only learn how to develop highly scalable, asynchronous, and event-driven APIs quickly with Express and Node.js, but you'll also be able put your full-stack skills to use by building two full-fledged MEAN applications from scratch. You’ll understand how to build a blogging application using the MEAN stack and get to grips with user authentication using MEAN. As you progress through the chapters, you’ll explore some old and new features of Angular, such as pipes, reactive forms, modules and optimizing apps, animations and unit testing, and much more. By the end of the book, you’ll get ready to take control of the MEAN stack and transform into a full-stack JavaScript developer, developing efficient web applications using Javascript technologies.
Table of Contents (9 chapters)
MongoDB, Express, Angular, and Node.js Fundamentals
Preface

Introduction


The previous chapter introduced us to frontend development with Angular. We learned how to jump-start frontend development using the Angular CLI and gainfully engaged with exercises and activities that taught us how to implement various features, such as directives, components, templates, reactive forms, and so on. In Chapter 2, Developing RESTful APIs to Perform CRUD Operations, we described RESTful APIs and their design concepts, and also developed an HTTP server for a Node application (backend development).

In this chapter, we will be continuing with the backend development; however, the focus will be on securing access to the use of APIs and securing Node applications in general. This chapter introduces Node application security practices and different forms of authentication. You will learn how to grant user access to the RESTful API that we developed in the previous chapter and perform user authentication on Node applications. This chapter also describes the structure...