1. Trang chủ
  2. » Tất cả

MEAN Web Development

354 9 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Cấu trúc

  • Cover

  • Copyright

  • Credits

  • About the Author

  • About the Reviewers

  • www.PacktPub.com

  • Table of Contents

  • Preface

  • Chapter 1: Introduction to MEAN

    • Three-tier web application development

    • The evolution of JavaScript

    • Introducing MEAN

    • Installing MongoDB

      • Installing MongoDB on Windows

        • Running MongoDB manually

        • Running MongoDB as a Windows Service

      • Installing MongoDB on Mac OS X and Linux

        • Installing MongoDB from binaries

        • Install MongoDB using a package manager

      • Using the MongoDB shell

    • Installing Node.js

      • Installing Node.js on Windows

      • Installing Node.js on Mac OS X

      • Installing Node.js on Linux

      • Running Node.js

    • Introducing NPM

      • Using NPM

        • The installation process of NPM

        • Managing dependencies using the package.json file

    • Summary

  • Chapter 2: Getting Started with Node.js

    • Introduction to Node.js

      • JavaScript event-driven programming

      • Node.js event-driven programming

    • JavaScript closures

    • Node modules

      • CommonJS modules

      • Node.js core modules

      • Node.js third-party modules

      • Node.js file modules

      • Node.js folder modules

    • Developing Node.js web applications

      • Meet the Connect module

        • Connect middleware

        • Understanding the order of Connect middleware

        • Mounting Connect middleware

    • Summary

  • Chapter 3: Building an Express Web Application

    • Introduction to Express

    • Installing Express

    • Creating your first Express application

    • The application, request, and response objects

      • The application object

      • The request object

      • The response object

    • External middleware

    • Implementing the MVC pattern

      • Application folder structure

        • Horizontal folder structure

        • Vertical folder structure

        • Files naming conventions

        • Implementing the horizontal folder structure

    • Configuring an Express application

      • Environment configuration files

    • Rendering views

      • Configuring the view system

      • Rendering EJS views

    • Serving static files

    • Configuring sessions

    • Summary

  • Chapter 4: Introduction to MongoDB

    • Introduction to NoSQL

    • Introducting MongoDB

    • Key features of MongoDB

      • The BSON format

      • MongoDB ad hoc queries

      • MongoDB indexing

      • MongoDB replica set

      • MongoDB sharding

    • MongoDB shell

    • MongoDB databases

    • MongoDB collections

    • MongoDB CRUD operations

      • Creating a new document

        • Creating a document using insert()

        • Creating a document using update()

        • Creating a document using save()

      • Reading documents

        • Finding all the collection documents

        • Using an equality statement

        • Using query operators

        • Building AND/OR queries

      • Updating existing documents

        • Updating documents using update()

        • Updating documents using save()

      • Deleting documents

        • Deleting all documents

    • Summary

  • Chapter 5: Introduction to Mongoose

    • Introducing Mongoose

      • Installing Mongoose

      • Connecting to MongoDB

    • Understanding Mongoose schemas

      • Creating the user schema and model

      • Registering the user model

      • Creating new users using save()

      • Finding multiple user documents using find()

        • Advanced querying using find()

      • Reading a single user document using findOne()

      • Updating an existing user document

      • Deleting an existing user document

    • Extending your Mongoose schema

      • Defining default values

      • Using schema modifiers

        • Predefined modifiers

        • Custom setter modifiers

        • Custom getter modifiers

      • Adding virtual attributes

      • Optimizing queries using indexes

    • Defining custom model methods

      • Defining custom static methods

      • Defining custom instance methods

    • Model validation

      • Predefined validators

      • Custom validators

    • Using Mongoose middleware

      • Using pre middleware

      • Using post middleware

    • Using Mongoose DBRef

    • Summary

  • Chapter 6: Managing User Authentication Using Passport

    • Introducing Passport

      • Installing Passport

      • Configuring Passport

    • Understanding Passport strategies

      • Using Passport's local strategy

        • Installing Passport's local strategy module

        • Configuring Passport's local strategy

      • Adapting the User model

      • Creating the authentication views

      • Modifying the user controller

        • Displaying flash error messages

      • Wiring the user's routes

    • Understanding Passport OAuth strategies

      • Setting up OAuth strategies

        • Handling OAuth user creation

        • Using Passport's Facebook strategy

        • Using Passport's Twitter strategy

        • Using Passport's Google strategy

    • Summary

  • Chapter 7: Introduction to AngularJS

    • Introducing AngularJS

    • Key concepts of AngularJS

      • The core module of AngularJS

        • The angular global object

      • AngularJS modules

        • Application modules

        • External modules

        • Third-party modules

      • Two-way data binding

      • Dependency injection

        • Dependency injection in AngularJS

      • AngularJS directives

        • Core directives

        • Custom directives

      • Bootstrapping an AngularJS application

        • Automatic bootstrap

        • Manual bootstrap

    • Installing AngularJS

      • Meeting the Bower dependencies manager

      • Configuring the Bower dependencies manager

      • Installing AngularJS using Bower

      • Configuring AngularJS

    • Structuring an AngularJS application

    • Bootstrapping your AngularJS application

    • AngularJS MVC entities

      • AngularJS views

      • AngularJS controllers and scopes

    • AngularJS routing

      • Installing the ngRoute module

      • Configuring the URL scheme

      • AngularJS application routes

    • AngularJS services

      • AngularJS prebundled services

      • Creating AngularJS services

      • Using AngularJS services

    • Managing AngularJS authentication

      • Rendering the user object

      • Adding the Authentication service

      • Using the Authentication service

    • Summary

  • Chapter 8: Creating a MEAN CRUD Module

    • Introducing CRUD modules

    • Setting up the Express components

      • Creating the Mongoose model

      • Setting up the Express controller

        • The error handling method of the Express controller

        • The create() method of the Express controller

        • The list () method of the Express controller

        • The read() middleware of the Express controller

        • The update() method of the Express controller

        • The delete method of the Express controller

        • Implementing an authentication middleware

        • Implementing an authorization middleware

      • Wiring the Express routes

      • Configuring the Express application

    • Introducing the ngResource module

      • Installing the ngResource module

      • Using the $resource service

    • Implementing the AngularJS MVC module

      • Creating the AngularJS module service

      • Setting up the AngularJS module controller

        • The create() method of the AngularJS controller

        • The find () and findOne() methods of the AngularJS controller

        • The update() method of the AngularJS controller

        • The delete() method of the AngularJS controller

      • Implementing the AngularJS module views

        • The create-article view

        • The view-article view

        • The edit-article view

        • The list-articles view

      • Wiring the AngularJS module routes

    • Finalizing your module implementation

    • Summary

  • Chapter 9: Adding Real-time Functionality Using Socket.io

    • Introducing WebSockets

    • Introducing Socket.io

      • The Socket.io server object

        • Socket.io handshaking

        • The Socket.io configuration middleware

      • The Socket.io client object

      • Socket.io events

        • Handling events

        • Emitting events

      • Socket.io namespaces

        • Socket.io server namespaces

        • Socket.io client namespaces

      • Socket.io rooms

        • Joining and leaving rooms

        • Emitting events to rooms

    • Installing Socket.io

      • Configuring the Socket.io server

      • Configuring the Socket.io session

        • Installing the connect-mongo and cookie-parser modules

        • Configuring the connect-mongo module

        • Configuring the Socket.io session

    • Building a Socket.io chat

      • Setting the event handlers of the chat server

      • Creating the Socket service

      • Creating the chat controller

      • Creating the chat view

      • Adding chat routes

      • Finalizing the chat implementation

    • Summary

  • Chapter 10: Testing MEAN Applications

    • Introducing JavaScript testing

      • TDD, BDD, and unit testing

      • Test frameworks

      • Assertion libraries

      • Test runners

    • Testing your Express application

      • Introducing Mocha

      • Introducing Should.js

      • Introducing SuperTest

      • Installing Mocha

      • Installing the Should.js and SuperTest modules

      • Configuring your test environment

      • Writing your first Mocha test

        • Testing the Express model

        • Testing the Express controller

      • Running your Mocha test

    • Testing your AngularJS application

      • Introducing the Jasmine framework

      • AngularJS unit tests

        • Introducing Karma test runner

        • Installing the Karma command-line tool

        • Installing Karma's dependencies

        • Configuring the Karma test runner

        • Mocking AngularJS components

        • Writing AngularJS unit tests

        • Writing your first unit test

        • Running your AngularJS unit tests

      • AngularJS E2E tests

        • Introducing the Protractor test runner

        • Installing the Protractor test runner

        • Configuring the protractor test runner

        • Writing your first E2E test

        • Running your AngularJS E2E tests

    • Summary

  • Chapter 11: Automating and Debugging MEAN Applications

    • Introducing the Grunt task runner

      • Installing the Grunt task runner

      • Configuring Grunt

        • Running your application using Grunt

        • Testing your application using Grunt

        • Linting your application using Grunt

        • Watching file changes using Grunt

    • Debugging Express with node-inspector

      • Installing node-inspector's grunt task

      • Configuring node-inspector's grunt task

      • Running the debug grunt task

    • Debugging AngularJS with Batarang

      • Using Batarang

        • Batarang Models

        • Batarang Performance

        • Batarang Dependencies

    • Summary

  • Index

Nội dung

www.it-ebooks.info MEAN Web Development Master real-time web application development using a mean combination of MongoDB, Express, AngularJS, and Node.js Amos Q Haviv BIRMINGHAM - MUMBAI www.it-ebooks.info MEAN Web Development Copyright © 2014 Packt Publishing All rights reserved No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews Every effort has been made in the preparation of this book to ensure the accuracy of the information presented However, the information contained in this book is sold without warranty, either express or implied Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals However, Packt Publishing cannot guarantee the accuracy of this information First published: September 2014 Production reference: 1190914 Published by Packt Publishing Ltd Livery Place 35 Livery Street Birmingham B3 2PB, UK ISBN 978-1-78398-328-5 www.packtpub.com Cover image by Sidhart Ravishankar (sidd.ravishankar@gmail.com) [ FM-2 ] www.it-ebooks.info Credits Author Project Coordinator Amos Q Haviv Shipra Chawhan Reviewers Proofreaders Clay Diffrient Simran Bhogal Liran Tal Ameesha Green Vikram Tiwari Indexers Yutaka Yamaguchi Hemangini Bari Mariammal Chettiyar Commissioning Editor Edward Gordon Tejal Soni Acquisition Editor Production Coordinators Richard Harvey Adonia Jones Komal Ramchandani Content Development Editor Neil Alexander Cover Work Adonia Jones Technical Editor Ankita Thakur Copy Editors Roshni Banerjee Sarang Chari [ FM-3 ] www.it-ebooks.info About the Author Amos Q Haviv is a software developer, technical consultant, and the creator of MEAN.IO and MEAN.JS He has been a full-stack developer for almost a decade and worked for multiple start-ups and enterprise companies He now works with various platforms, frameworks, and programming languages, including the NET framework, Python, Scala, Objective-C, and of course, JavaScript For the past years, Amos has been working with full-stack JavaScript solutions, including Node.js and MongoDB, as well as MVC frontend frameworks, such as AngularJS In 2013, he created the first popular boilerplate for MEAN applications, MEAN.IO, and currently continues the development of MEAN solutions at http://meanjs.org He also gives lectures on advanced web technologies at meetups and conferences, and he guides development teams at various companies I would like to thank my partner in life, Einat Shahak, for putting up with late night hacking sessions and a messy workroom She has seen me go through every important turning point of my life with nothing but sheer encouragement and support I would like to thank my parents for helping me become who I am, and my brothers for always reminding me who I want to be I would also like to thank my dear friend and colleague Roie Schwaber-Cohen Without his efforts and support, the development of MEAN as well as this book quite possibly would not have happened Lastly, I would like to thank the contributors and developers who make the open source community the powerful and creative force that it is You taught me more than I could have ever imagined [ FM-4 ] www.it-ebooks.info About the Reviewers Clay Diffrient is a software engineer who loves to work at the cutting edge of web technologies He has worked many times developing applications using the MEAN stack He focuses his time and effort on the development of software that can help other people learn His most recent project involving the MEAN stack is a computer adaptive testing system, which is currently under active development He completed his Bachelor's degree in Computer Science at Brigham Young University-Idaho He currently works for Instructure, Inc as a frontend developer on Canvas, an open source learning management system I want to thank my wonderful wife, Rachael, for her support in all that I [ FM-5 ] www.it-ebooks.info Liran Tal is a top contributor to the open source MEAN.IO and MEAN.JS full-stack JavaScript frameworks He is also a certified MongoDB developer and a technical reviewer of the yet-to-be-published MongoDB Cookbook, Packt Publishing (the name of the book might change in the course of publishing) Being an avid supporter of and contributor to the open source movement, in 2007, he redefined network RADIUS management by establishing daloRADIUS, a world-renowned and industry-leading open source project Liran currently works at HP Software as an R&D team leader on a combined technology stack, featuring a Drupal-based collaboration platform, Java, Node.js, and MongoDB At HP Live Network, Liran plays a key role in system architecture design, shaping the technology strategy from planning and development to deployment and maintenance in HP's IaaS cloud Acting as the technological focal point, he loves mentoring teammates, drives for better code methodology, and seeks out innovative solutions to support business strategies He has a cum laude (Honors) in his Bachelor's degree in Business and Information Systems Analysis studies and enjoys spending his time with his beloved wife, Tal, and his new born son, Ori Among other things, his hobbies include playing the guitar, hacking all things on Linux, and continuously experimenting and contributing to open source projects Vikram Tiwari is currently working as a MEAN stack developer in SilverPush (SilverEdge, Inc.) Using MEAN, he has developed a frontend tool for a mobile advertising management platform Along with MEAN stack, he also works on Python, Google App Engine, Redis, DynamoDB, Aerospike, and various Google APIs In his free time, he contributes to various projects on GitHub and manages the developers' community at New Delhi with Google Developers Group Yutaka Yamaguchi is currently working as a frontend MEAN application developer Prior to this, he worked as a senior manager in the quality assurance area for years He lives in Tokyo with his wife and their 4-year old son He built his first own home page in 1999, which is written with HTML4 by Notepad, without CSS and JavaScript He has worked at Six Apart, whose flagship product is the movable type of a social publishing platform dedicated to helping businesses and bloggers manage content and thrive in today's social media landscape [ FM-6 ] www.it-ebooks.info www.PacktPub.com Support files, eBooks, discount offers, and more You might want to visit www.PacktPub.com for support files and downloads related to your book Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at www.PacktPub com and as a print book customer, you are entitled to a discount on the eBook copy Get in touch with us at service@packtpub.com for more details At www.PacktPub.com, you can also read a collection of free technical articles, sign up for a range of free newsletters and receive exclusive discounts and offers on Packt books and eBooks TM http://PacktLib.PacktPub.com Do you need instant solutions to your IT questions? PacktLib is Packt's online digital book library Here, you can access, read and search across Packt's entire library of books Why subscribe? • Fully searchable across every book published by Packt • Copy and paste, print and bookmark content • On demand and accessible via web browser Free access for Packt account holders If you have an account with Packt at www.PacktPub.com, you can use this to access PacktLib today and view nine entirely free books Simply use your login credentials for immediate access [ FM-7 ] www.it-ebooks.info www.it-ebooks.info Table of Contents Preface 1 Chapter 1: Introduction to MEAN Three-tier web application development The evolution of JavaScript Introducing MEAN Installing MongoDB Installing MongoDB on Windows Running MongoDB manually Running MongoDB as a Windows Service Installing MongoDB on Mac OS X and Linux Installing MongoDB from binaries Install MongoDB using a package manager Using the MongoDB shell Installing Node.js Installing Node.js on Windows Installing Node.js on Mac OS X Installing Node.js on Linux Running Node.js Introducing NPM Using NPM The installation process of NPM Managing dependencies using the package.json file 10 11 12 12 13 14 14 15 16 17 17 19 20 20 21 21 22 24 Summary 27 Chapter 2: Getting Started with Node.js Introduction to Node.js JavaScript event-driven programming Node.js event-driven programming JavaScript closures Node modules www.it-ebooks.info 29 30 31 33 34 36 .. .MEAN Web Development Master real-time web application development using a mean combination of MongoDB, Express, AngularJS, and Node.js Amos Q Haviv BIRMINGHAM - MUMBAI www.it-ebooks.info MEAN. .. popular boilerplate for MEAN applications, MEAN. IO, and currently continues the development of MEAN solutions at http://meanjs.org He also gives lectures on advanced web technologies at meetups... Introduction to MEAN Three-tier web application development Most web applications are built in a three-tier architecture that consists of three important layers: data, logic, and presentation In web applications,

Ngày đăng: 02/01/2017, 21:46