NodeJS: Complete Developer Guide to Learn and Understand

NodeJS: Complete Developer Guide to Learn and Understand

Get ready for your exam by enrolling in our comprehensive training course. This course includes a full set of instructional videos designed to equip you with in-depth knowledge essential for passing the certification exam with flying colors.

$14.99 / $24.99

Introduction and Setup

  • 1. Introduction and the Goal of this Course
    4m 33s
  • 2. Big Words and NodeJS
    1m 13s
  • 3. Conceptual Aside: The Command Line Interface
    9m 49s

V8: The Javascript Engine

  • 1. Conceptual Aside: Processors, Machine Language, and C++
    10m 7s
  • 2. Javascript Aside: Javascript Engines and The ECMAScript Specification
    4m 1s
  • 3. V8 Under the Hood
    5m 57s
  • 4. Adding Features to Javascript
    15m 4s

The Node Core

  • 1. Conceptual Aside: Servers and Clients
    6m 45s
  • 2. What Does Javascript Need to Manage a Server?
    2m 18s
  • 3. The C++ Core
    5m 51s
  • 4. The Javascript Core
    3m 4s
  • 5. Let's Install and Run Some Javascript in Node
    16m 47s

Modules, Exports, and Require

  • 1. Conceptual Aside: Modules
    2m 21s
  • 2. Javascript Aside: First-Class Functions and Function Expressions
    12m 3s
  • 3. Let's Build a Module
    10m 54s
  • 4. Javascript Aside: Objects and Object Literals
    6m 55s
  • 5. Javascript Aside: Prototypal Inheritance and Function Constructors
    11m 38s
  • 6. Javascript Aside: By Reference and By Value
    5m 44s
  • 7. Javascript Aside: Immediately Invoked Function Expressions (IIFEs)
    7m 42s
  • 8. How Do Node Modules Really Work?: module.exports and require
    17m 33s
  • 9. Javascript Aside: JSON
    1m 40s
  • 10. More on require
    11m 39s
  • 11. Module Patterns
    19m 12s
  • 12. exports vs module.exports
    10m 2s
  • 13. Requiring Native (Core) Modules
    6m 51s
  • 14. Modules and ES6
    2m 36s
  • 15. Web Server Checklist
    1m 21s

Events and the Event Emitter

  • 1. Conceptual Aside: Events
    5m 24s
  • 2. Javascript Aside: Object Properties, First Class Functions, and Arrays
    5m 8s
  • 3. The Node Event Emitter - Part 1
    13m 58s
  • 4. The Node Event Emitter - Part 2
    11m 58s
  • 5. Javascript Aside: Object.create and Prototypes
    6m 18s
  • 6. Inheriting From the Event Emitter
    14m 40s
  • 7. Javascript Aside: Node, ES6, and Template Literals
    7m 55s
  • 8. Javascript Aside: .call and .apply
    3m 40s
  • 9. Inheriting From the Event Emitter - Part 2
    9m 43s
  • 10. Javascript Aside: ES6 Classes
    8m 43s
  • 11. Inheriting From the Event Emitter - Part 3
    6m

Asynchronous Code, libuv, The Event Loop, Streams, Files, and more…

  • 1. Javascript Aside: Javascript is Synchronous
    2m 38s
  • 2. Conceptual Aside: Callbacks
    1m 29s
  • 3. libuv, The Event Loop, and Non-Blocking Asynchronous Execution
    11m 39s
  • 4. Conceptual Aside: Streams and Buffers
    4m 31s
  • 5. Conceptual Aside: Binary Data, Character Sets, and Encodings
    11m 9s
  • 6. Buffers
    6m 48s
  • 7. ES6 Typed Arrays
    4m 52s
  • 8. Javascript Aside: Callbacks
    4m 3s
  • 9. Files and fs
    15m 52s
  • 10. Streams
    18m 14s
  • 11. Conceptual Aside: Pipes
    2m 14s
  • 12. Pipes
    15m 51s
  • 13. Web Server Checklist
    2m 37s

HTTP and being a Web Server

  • 1. Conceptual Aside: TCP/IP
    7m 55s
  • 2. Conceptual Aside: Addresses and Ports
    3m 11s
  • 3. Conceptual Aside: HTTP
    6m 6s
  • 4. http_parser
    6m 56s
  • 5. Let's Build a Web Server in Node
    17m 26s
  • 6. Outputting HTML and Templates
    11m 43s
  • 7. Streams and Performance
    5m 11s
  • 8. Conceptual Aside: APIs and Endpoints
    2m 37s
  • 9. Outputting JSON
    6m 39s
  • 10. Routing
    11m 2s
  • 11. Web Server Checklist
    2m 24s

NPM: the Node Package Manager

  • 1. Conceptual Aside: Packages and Package Managers
    3m 7s
  • 2. Conceptual Aside: Semantic Versioning (semver)
    4m 46s
  • 3. npm and the npm registry: Other People's Code
    4m 59s
  • 4. init, nodemon, and package.json
    13m 2s
  • 5. init, nodemon, and package.json - Part 2
    15m 17s
  • 6. Using Other People's Code
    1m 43s

Express

  • 1. Installing Express and Making it Easier to Build a Web Server
    16m 1s
  • 2. Routes
    4m 32s
  • 3. Static Files and Middleware
    14m 58s
  • 4. Templates and Template Engines
    15m 54s
  • 5. Querystring and Post Parameters
    18m 21s
  • 6. RESTful APIs and JSON
    5m 21s
  • 7. Structuring an App
    13m 45s

Javascript, JSON, and Databases

  • 1. Conceptual Aside: Relational Databases and SQL
    3m 48s
  • 2. Node and MySQL
    9m 28s
  • 3. Conceptual Aside: NoSQL and Documents
    3m 12s
  • 4. MongoDB and Mongoose
    10m 50s
  • 5. Web Server Checklist
    1m 7s

The MEAN stack

  • 1. MongoDB, Express, AngularJS, and NodeJS
    6m 58s
  • 2. AngularJS: Managing the Client
    10m 32s
  • 3. AngularJS: Managing the Client (Part 2)
    8m 9s
  • 4. AngularJS: Managing the Client (Part 3)
    19m 17s
  • 5. Conceptual Aside: Angular 1, Angular 2, React, and more…
    3m 6s
  • 6. Working with The Full Stack (and being a Full Stack Developer) - Part 1
    11m 59s

Let's Build an App! (in record time)

  • 1. NodeTodo: Software Requirements
    2m 20s
  • 2. Initial Setup
    3m 38s
  • 3. Setting up Mongo and Mongoose
    9m 9s
  • 4. Adding Seed Data
    9m 31s
  • 5. Creating our API
    13m 33s
  • 6. Testing our API
    16m 17s
  • 7. Adding a Front-End in Angular 2 (Part 1)
    23m 22s
Study4Pass does not provide real Microsoft exam questions. Similarly, Study4Pass does not supply real Amazon exam questions. The materials offered by Study4Pass lack real questions and answers from Cisco's certification exams. The CFA Institute neither endorses nor assures the accuracy or quality of Study4Pass content. CFA® and Chartered Financial Analyst® are registered trademarks held by the CFA Institute.

© study4pass.com 2025. All rights reserved.