Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
MongoDB, Express, Angular, and Node.js Fundamentals
MongoDB, Express, Angular, and Node.js Fundamentals

MongoDB, Express, Angular, and Node.js Fundamentals: Become a MEAN master and rule the world of web applications

eBook
AU$14.99 AU$42.99
Paperback
AU$53.99
Subscription
Free Trial
Renews at AU$24.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

MongoDB, Express, Angular, and Node.js Fundamentals

Chapter 2. Developing RESTful APIs to Perform CRUD Operations

Note

Learning Objectives

By the end of this chapter, you will be able to:

  • Describe the design concept of a RESTful API

  • Create a MongoDB Atlas cluster with Node

  • Connect a Node application to a database with the native MongoDB driver and Mongoose

  • Create a database schema and a data model with Mongoose

  • Create and export routes

  • Implement Express with Node

  • Develop a RESTful API

Note

This chapter presents the fundamentals and practical elements that will enable you to develop and test a RESTful API.

Introduction


We began this book by describing the MEAN (MongoDB, Express, Angular, and Node) architecture. Specifically, we described its technology components in terms of their features/advantages, limitations, and scenarios in which they are best used. We ran a Node server and implemented various Node features, such as callbacks, event loops, event emitters, streams, buffers, and the filesystem.

This chapter will revolve around RESTful APIs, which are a major application of Node that leverage HTTP request types to indicate a desired action. We will also introduce you to the RESTful API and its designs concepts. Later in this chapter, we will talk about some operations of MongoDB Atlas, such as creating clusters, schemas, and connecting the database to applications. This chapter will present the Express framework and its feature implementation on Node and MongoDB Atlas.

Finally, you'll implement Node, MongoDB Atlas, and Express together, with the goal of developing a RESTful API to perform...

Getting Started with RESTful APIs


An API (Application Programming Interface) is a set of subroutines and protocols that communicate between two components, if possible. To best comprehend the functionality of an API, let's take a look at the following case study.

Consider you have a functioning e-commerce website, and at a point in time you discover the need to track where your customers are actually located so that this data can be used for analytics and marketing purposes. So, you decide to integrate the Google Geolocation API on your e-commerce website instead of creating your own geolocation program from scratch, which would definitely cost you more in terms of both money and time.

Now, how does the Google Geolocation API work?

Whenever a customer visits your website after the Geolocation API is implemented on it, a request is fired to get the location of the GPS-enabled device that was used to access the website. Then, a response is fed back as a result. This response contains a location...

Getting Started with MongoDB Atlas


We covered an introduction to MongoDB in the first chapter. Recall that MongoDB is a document-oriented database program, also classified as a NoSQL database, and it uses JSON-like documents with schemas. In this book, MongoDB Atlas, which was highlighted briefly in the previous chapter as one of the database-as-a -service offerings by MongoDB for addressing the affordability challenges of small-scale start-ups and independent developers, will be used. First, we will set up an account on MongoDB and then set up MongoDB servers, known as clusters, to connect to applications. Finally, we will employ default (native) database drivers and a third-party driver to have the database connect with to Node application. We will also create database schemas and data models.

If you have an existing MongoDB account, you can use your credentials to log in to the MongoDB Atlas dashboard. If you don't, then you can sign up for free at https://www.MongoDB.com/cloud/atlas....

Getting Started with Express


Express provides a robust set of features for building web applications. In the first chapter, we briefly talked about Express.js, and discussed its advantages and limitations. This topic is about the implementation of Express in an application.

Creating an Express application requires the following steps:

  1. Importing the Express module

  2. Creating the Express application

  3. Defining the route

  4. Listening to the server

Take a look at the following example in Express:

// load express module
var express = require('express');

//Create express app
var app = express();

// route definition
app.get('/', function (req, res) {
res.send('Hello World');
});

// Start server
app.listen(4000, function () {
    console.log('App listening at Port 4000..');
});

In the preceding code snippet, the Express module is first loaded and assigned to a variable. Then, an app is created using the variable function. The app.get() method is used to define the route by passing in a route path and a callback...

Summary


This chapter got us started on the introduction to RESTful APIs and their design concepts. First, we defined what an API is and then expanded on REST. Thereafter, we looked into design practices that have been employed by established companies and described the guiding framework for web standards.

In the subsequent sections, we looked into how MongoDB Atlas is implemented with Node. We also performed an exercise on creating MongoDB Atlas server components, known as clusters, and connected them with applications. Later in this section, we established connections with applications using middleware such as the native MongoDB driver and Mongoose. We also described how schemas are created and defined with Mongoose. Finally, we performed an exercise on model creation using the default Mongoose method.

In the final sections of this chapter, we implemented various features in Express with Node. These included routing HTTP requests, configuring middleware, error handing, rendering HTML views...

Left arrow icon Right arrow icon

Key benefits

  • Build highly scalable, asynchronous, and event-driven APIs
  • Develop a user authentication system with MEAN
  • Build a full-fledged application using the MEAN stack

Description

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.

Who is this book for?

If you are a beginner or intermediate frontend developer who wants to become full-stack JavaScript developer, this book is ideal for you. You'll need some prior exposure to MongoDB as we skim over its basics before getting straight to work.

What you will learn

  • Understand the MEAN architecture
  • Create RESTful APIs to complete CRUD tasks
  • Build a blogging application with basic features
  • Describe best practices to secure node applications
  • Implement authentication and authorization
  • Creating simple animations using Angular
  • Perform unit testing on Angular applications

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Mar 07, 2019
Length: 362 pages
Edition : 1st
Language : English
ISBN-13 : 9781789803938
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Mar 07, 2019
Length: 362 pages
Edition : 1st
Language : English
ISBN-13 : 9781789803938
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
AU$24.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
AU$249.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts
AU$349.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total AU$ 107.98
Advanced JavaScript
AU$53.99
MongoDB, Express, Angular, and Node.js Fundamentals
AU$53.99
Total AU$ 107.98 Stars icon
Banner background image

Table of Contents

6 Chapters
Introduction to the MEAN Stack Chevron down icon Chevron up icon
Developing RESTful APIs to Perform CRUD Operations Chevron down icon Chevron up icon
Beginning Frontend Development with Angular CLI Chevron down icon Chevron up icon
The MEAN Stack Security Chevron down icon Chevron up icon
Angular Declarables, Bootstrapping, and Modularity Chevron down icon Chevron up icon
Testing and Optimizing Angular Applications Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
(2 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 100%
Soderberg Seltsam Dec 12, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
This book is complete nonsense. It doesn't teach you anything, didactically it makes no sense, jumps from topic to topic, has bad (wrongly copied) code examples from websites, a lot of typos and doesn't help you to learn the MEAN stack at all. I'm going to look for something better and will send this back, just like any other broken product.
Amazon Verified review Amazon
Lisa Mar 03, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
This book is a hot mess and not worth the paper it was printed on. There are so many typos it makes me wonder if ANYONE bothered to look at it before it went into print...? The code files do not correspond with the directory images in this book which, not only makes it confusing but a bit frustrating as well. I have read better free online meanstack tutorials - don't waste your money on this garbage! Needless to say, this was my first and last Packt book!
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.