Home > Store

Node.js, MongoDB, and AngularJS Web Development

Register your product to gain access to bonus material or receive a coupon.

Node.js, MongoDB, and AngularJS Web Development

eBook (Watermarked)

  • Sorry, this book is no longer in print.
  • Includes EPUB and PDF
  • About eBook Formats
  • This eBook includes the following formats, accessible from your Account page after purchase:

    ePub EPUB The open industry format known for its reflowable content and usability on supported mobile devices.

    Adobe Reader PDF The popular standard, used most often with the free Acrobat® Reader® software.

    This eBook requires no passwords or activation to read. We customize your eBook by discreetly watermarking it with your name, making it uniquely yours.

Not for Sale

Description

  • Copyright 2014
  • Dimensions: 7" x 9"
  • Edition: 1st
  • eBook (Watermarked)
  • ISBN-10: 0-13-384436-6
  • ISBN-13: 978-0-13-384436-8

Node.js, MongoDB and AngularJS Web Development

The definitive guide to building using the MEAN stack to build web applications


Also known as the MEAN stack, Node.js, MongoDB, and AngularJS are three new web development technologies that together provide an easy to implement, fully integrated web development stack. Node.js is a leading server-side programming environment, MongoDB is the most popular NoSQL database, and AngularJS is quickly becoming the leading framework for MVC-based front-end development. Together they allow web programmers to create high-performance sites and applications built completely in JavaScript, from server to client.


Node.js, MongoDB and AngularJS Web Development  is a complete guide for web programmers who want to integrate these three technologies into full working solutions. It begins with concise, crystal-clear tutorials on each of the three technologies and then quickly moves on to building several common web applications.


Readers will learn how to use Node.js and MongoDB to build more scalable, high-performance sites, how to leverage AngularJS's innovative MVC approach to structure more effective pages and applications, and how to use all three together to deliver outstanding next-generation Web solutions.

  • Implement a highly scalable and dynamic web server using Node.js and Express
  • Build server-side web services in JavaScript
  • Implement a MongoDB data store for your web applications
  • Access and interact with MongoDB from Node.js JavaScript code
  • Define static and dynamic web routes and implement server-side scripts to support them
  • Implement Express in Node.js
  • Create Jade templates
  • Define your own custom AngularJS directives that extend the HTML language
  • Implement client-side services that can interact with the Node.js web server
  • Build dynamic browser views that provide rich user interaction
  • Add authenticated user accounts to your web applications
  • Add nested comment components to your web pages
  • Build an end-to-end shopping cart

Contents at a Glance


Part I: Getting Started

1 Introducing the Node.js-to-AngularJS Stack

2 JavaScript Primer


Part II: Learning Node.js

3 Getting Started with Node.js

4 Using Events, Listeners, Timers, and Callbacks in Node.js

5 Handling Data I/O in Node.js

6 Accessing the File System from Node.js

7 Implementing HTTP Services in Node.js

8 Implementing Socket Services in Node.js

9 Scaling Applications Using Multiple Processors in Node.js

10 Using Additional Node.js Modules


Part III: Learning MongoDB

11 Understanding NoSQL and MongoDB

12 Getting Started with MongoDB

13 Getting Started with MongoDB and Node.js

14 Manipulating MongoDB Documents from Node.js

15 Accessing MongoDB Documents from Node.js

16 Using Mongoose for Structured Schema and Validation

17 Advanced MongoDB Concepts


Part IV: Using Express to Make Life Easier

18 Implementing Express in Node.js

19 Implementing Express Middleware


Part V: Learning AngularJS

20 Getting Started with AngularJS

21 Understanding AngularJS Modules and Dependency Injection

22 Implementing the Scope as a Data Model

23 Using AngularJS Templates to Create Views

24 Implementing Directives in AngularJS Views

25 Implementing AngularJS Services in Web Applications


Part VI: Building Practical Web Application Components

26 Adding User Accounts to Your Website

27 Adding Comment Threads to Pages

28 Creating Your Own Shopping Cart

29 Building Interactive Web 2.0 Application Components

Sample Content

Table of Contents

Introduction

Part I: Getting Started

1 Introducing the Node.js-to-AngularJS Stack

Understanding the Basic Web Development Framework ¿

Understanding the Node.js-to-AngularJS Stack Components¿

2 JavaScript Primer

Defining Variables

Understanding JavaScript Data Types

Using Operators

Implementing Looping

Creating Functions

Understanding Variable Scope

Using JavaScript Objects

Manipulating Strings

Working with Arrays

Adding Error Handling

Part II: Learning Node.js

3 Getting Started with Node.js

Understanding Node.js

Installing Node.js

Working with Node.js Packages

Creating a Node.js Application

Writing Data to the Console

4 Using Events, Listeners, Timers, and Callbacks in Node.js

Understanding the Node.js Event Model

Adding Work to the Event Queue

Implementing Callbacks

5 Handling Data I/O in Node.js

Working with JSON

Using the Buffer Module to Buffer Data

Using the Stream Module to Stream Data

Compressing and Decompressing Data with Zlib

6 Accessing the File System from Node.js

Synchronous Versus Asynchronous File System Calls

Opening and Closing Files

Writing Files

Reading Files

Other File System Tasks

7 Implementing HTTP Services in Node.js

Processing URLs

Processing Query Strings and Form Parameters

Understanding Request, Response, and Server Objects

Implementing HTTP Clients and Servers in Node.js

Implementing HTTPS Servers and Clients

8 Implementing Socket Services in Node.js

Understanding Network Sockets

Understanding TCP Server and Socket Objects

Implementing TCP Socket Servers and Clients

Implementing TLS Servers and Clients

9 Scaling Applications Using Multiple Processors in Node.js

Understanding the process Module

Implementing Child Processes

Implementing Process Clusters

10 Using Additional Node.js Modules

Using the os Module

Using the util Module

Part III: Learning MongoDB

11 Understanding NoSQL and MongoDB

Why NoSQL?

Understanding MongoDB

MongoDB Data Types

Planning Your Data Model

12 Getting Started with MongoDB

Building the MongoDB Environment

Administering User Accounts

Configuring Access Control

Administering Databases

Managing Collections

13 Getting Started with MongoDB and Node.js

Adding the MongoDB Driver to Node.js

Connecting to MongoDB from Node.js

Understanding the Objects Used in the MongoDB Node.js Driver

Accessing and Manipulating Databases

Accessing and Manipulating Collections

14 Manipulating MongoDB Documents from Node.js

Understanding Database Change Options

Understanding Database Update Operators

Adding Documents to a Collection

Getting Documents from a Collection

Updating Documents in a Collection

Atomically Modifying Documents in a Collection

Saving Documents in a Collection

Using upsert to Insert Documents in a Collection

Deleting Documents from a Collection

Removing a Single Document from a Collection

15 Accessing MongoDB Documents from Node.js

Introducing the Data Set

Understanding Query Objects

Understanding Query options Objects

Finding Specific Sets of Documents

Counting Documents

Limiting Result Sets

Sorting Result Sets

Finding Distinct Field Values

Grouping Results

Applying MapReduce by Aggregating Results

16 Using Mongoose for Structured Schema and Validation

Understanding Mongoose

Connecting to a MongoDB Database by Using Mongoose

Defining a Schema

Compiling a Model

Understanding the Query Object

Understanding the Document Object

Finding Documents by Using Mongoose

Adding Documents by Using Mongoose

Updating Documents by Using Mongoose

Removing Documents by Using Mongoose

Aggregating Documents by Using Mongoose

Using the Validation Framework

Implementing Middleware Functions

17 Advanced MongoDB Concepts

Adding Indexes

Using Capped Collections

Applying Replication

Implementing Sharding

Implementing a GridFS Store

Repairing a MongoDB Database

Backing Up MongoDB

Part IV: Using Express to Make Life Easier

18 Implementing Express in Node.js

Getting Started with Express

Configuring Routes

Using Request Objects

Using Response Objects

Implementing a Template Engine

19 Implementing Express Middleware

Understanding Middleware

Using the query Middleware

Serving Static Files

Handling POST Body Data

Sending and Receiving Cookies

Implementing Sessions

Applying Basic HTTP Authentication

Implementing Session Authentication

Creating Custom Middleware

Part V: Learning AngularJS

20 Getting Started with AngularJS

Why AngularJS?

Understanding AngularJS

An Overview of the AngularJS Life Cycle

Integrating AngularJS with Existing JavaScript and jQuery

Adding AngularJS to the Node.js Environment

Bootstrapping AngularJS in an HTML Document

Using the Global APIs

Creating a Basic AngularJS Application

21 Understanding AngularJS Modules and Dependency Injection

Overview of Modules and Dependency Injection

Defining AngularJS Modules

Implementing Dependency Injection

22 Implementing the Scope as a Data Model

Understanding Scopes

Implementing Scope Hierarchy

Emitting and Broadcasting Events

23 Using AngularJS Templates to Create Views

Understanding Templates

Using Expressions

Using Filters

Creating Custom Filters

24 Implementing Directives in AngularJS Views

Understanding Directives

Using Built-in Directives

Creating Your Own Directives to Extend HTML

25 Implementing AngularJS Services in Web Applications

Understanding AngularJS Services

Using the Built-in Services

Creating Custom Services

Part VI: Building Practical Web Application Components

26 Adding User Accounts to Your Website

Libraries Used

Project Directory Structure

Defining the User Model

Creating the Server

Implementing Routes

Implementing the User Controller Routes

Implementing the User and Authentication Views

Implementing the AngularJS Module and Controller

Using Social Media Accounts as Authentication Sources

27 Adding Comment Threads to Pages

Libraries Used

Project Directory Structure

Defining the Comment, Reply, Photo, and Page Models

Creating the Comments Server

Implementing Routes to Support Viewing and Adding Comments

Implementing the Model-Based Controller Routes

Implementing Photo and Comment Views

Implementing the AngularJS Module and Controller to Support Comment Views

Initializing the Application

28 Creating a Shopping Cart

Project Description

Libraries Used

Project Directory Structure

Defining the Customer, Product, and Orders Models

Creating the Shopping Cart Server

Implementing Routes to Support Product, Cart, and Order Requests

Implementing the Model-Based Controller Routes

Implementing Shopping Cart and Checkout Views

Implementing the AngularJS Module and Controller to Support Shopping Cart Views

Initializing the Application

29 Building Interactive Web 2.0 Application Components

Project Description

Libraries Used

Project Directory Structure

Defining the Project Model

Creating the Application Server

Implementing Routes to Support the Views

Implementing a Tabbed View

Implementing a Weather Service View

Implementing Draggable Elements

Implementing Dynamic Data Access

Initializing the Application


Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020