Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
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

Arrow left icon
Profile Icon Paul Oluyege
Arrow right icon
$19.99 per month
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1 (2 Ratings)
Paperback Mar 2019 362 pages 1st Edition
eBook
$23.99 $26.99
Paperback
$38.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Paul Oluyege
Arrow right icon
$19.99 per month
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1 (2 Ratings)
Paperback Mar 2019 362 pages 1st Edition
eBook
$23.99 $26.99
Paperback
$38.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$23.99 $26.99
Paperback
$38.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
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 : 9781789808735
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

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

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.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
$199.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 $5 each
Feature tick icon Exclusive print discounts
$279.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 $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 77.98
Advanced JavaScript
$38.99
MongoDB, Express, Angular, and Node.js Fundamentals
$38.99
Total $ 77.98 Stars icon

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

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.

Modal Close icon
Modal Close icon