Mô tả

NodeJS is a rapidy growing web server technology, and Node developers are among the highest paid in the industry. Knowing NodeJS well will get you a job or improve your current one by enabling you to build high quality, robust web applications.

In this course you will gain a deep understanding of Node, learn how NodeJS works under the hood, and how that knowledge helps you avoid common pitfalls and drastically improve your ability to debug problems.

In this course we'll look at how the C++ written V8 Javascript engine works and how NodeJS uses it to expand the abilities of Javascript. You'll learn how to structure your code for reuse and to be easier to understand, manage, and expand using modules and understand how modules really work.

You'll learn how asynchronous code works in Node and the Node event loop, as well as how to use the event emitter, streams, buffers, pipes, and work with files. We'll see how that leads to building a web server in Node.

We'll dive into web sites, web apps and APIs with Express and learn how Express can save us time as Node developers.

You'll also gain an understanding of npm, connecting to databases, and the MEAN stack!

During it all you'll gain a deep understanding of the Javascript concepts and other computer science concepts that power Node.

NodeJS doesn't have to be hard to learn. The biggest mistake most coding tutorials make is expecting someone to learn simply by imitating others' code. Real world situations are never exactly like the tutorial.

I believe the best way to learn is to understand how a tool works and what it does for you, look at examples, and then try it yourself. That's how this course is built, with the goal to help you both learn and understand NodeJS.

Note: In this course you'll also get downloadable source code. You will often be provided with 'starter' code, giving you the base for you to start writing your code, and 'finished' code to compare your code to.

Bạn sẽ học được gì

Grasp how NodeJS works under the hood

Understand the Javascript and technical concepts behind NodeJS

Structure a Node application in modules

Understand and use the Event Emitter

Understand Buffers, Streams, and Pipes

Build a Web Server in Node and understand how it really works

Use npm and manage node packages

Build a web application and API more easily using Express

Connect to a SQL or Mongo database in Node

Understand how the MEAN stack works

Be the coder that explains NodeJS to everyone else because you understand it better than anyone else

Yêu cầu

  • Basic Javascript knowledge (variables, loops, and basic functions)
  • Basic HTML knowledge
  • A text editor

Nội dung khoá học

12 sections

Introduction and Setup

5 lectures
Introduction and the Goal of this Course
04:33
Big Words and NodeJS
01:13
Watching this Course in High Definition
00:50
Conceptual Aside: The Command Line Interface
09:49
Command Line References
00:12

V8: The Javascript Engine

4 lectures
Conceptual Aside: Processors, Machine Language, and C++
10:07
Javascript Aside: Javascript Engines and The ECMAScript Specification
04:01
V8 Under the Hood
05:57
Adding Features to Javascript
15:04

The Node Core

6 lectures
Conceptual Aside: Servers and Clients
06:45
What Does Javascript Need to Manage a Server?
02:18
The C++ Core
05:51
The Javascript Core
03:04
Downloading Lecture Source Code
00:33
Let's Install and Run Some Javascript in Node
16:47

Modules, Exports, and Require

15 lectures
Conceptual Aside: Modules
02:21
Javascript Aside: First-Class Functions and Function Expressions
12:03
Let's Build a Module
10:54
Javascript Aside: Objects and Object Literals
06:55
Javascript Aside: Prototypal Inheritance and Function Constructors
11:38
Javascript Aside: By Reference and By Value
05:44
Javascript Aside: Immediately Invoked Function Expressions (IIFEs)
07:42
How Do Node Modules Really Work?: module.exports and require
17:33
Javascript Aside: JSON
01:40
More on require
11:39
Module Patterns
19:12
exports vs module.exports
10:02
Requiring Native (Core) Modules
06:51
Modules and ES6
02:36
Web Server Checklist
01:21

Events and the Event Emitter

11 lectures
Conceptual Aside: Events
05:24
Javascript Aside: Object Properties, First Class Functions, and Arrays
05:08
The Node Event Emitter - Part 1
13:58
The Node Event Emitter - Part 2
11:58
Javascript Aside: Object.create and Prototypes
06:18
Inheriting From the Event Emitter
14:40
Javascript Aside: Node, ES6, and Template Literals
07:55
Javascript Aside: .call and .apply
03:40
Inheriting From the Event Emitter - Part 2
09:43
Javascript Aside: ES6 Classes
08:43
Inheriting From the Event Emitter - Part 3
06:00

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

13 lectures
Javascript Aside: Javascript is Synchronous
02:38
Conceptual Aside: Callbacks
01:29
libuv, The Event Loop, and Non-Blocking Asynchronous Execution
11:39
Conceptual Aside: Streams and Buffers
04:31
Conceptual Aside: Binary Data, Character Sets, and Encodings
11:09
Buffers
06:48
ES6 Typed Arrays
04:52
Javascript Aside: Callbacks
04:03
Files and fs
15:52
Streams
18:14
Conceptual Aside: Pipes
02:14
Pipes
15:51
Web Server Checklist
02:37

HTTP and being a Web Server

11 lectures
Conceptual Aside: TCP/IP
07:55
Conceptual Aside: Addresses and Ports
03:11
Conceptual Aside: HTTP
06:06
http_parser
06:56
Let's Build a Web Server in Node
17:26
Outputting HTML and Templates
11:43
Streams and Performance
05:11
Conceptual Aside: APIs and Endpoints
02:37
Outputting JSON
06:39
Routing
11:02
Web Server Checklist
02:24

NPM: the Node Package Manager

7 lectures
Conceptual Aside: Packages and Package Managers
03:07
Conceptual Aside: Semantic Versioning (semver)
04:46
npm and the npm registry: Other People's Code
04:59
init, nodemon, and package.json
13:02
npm Global Installation
00:11
init, nodemon, and package.json - Part 2
15:17
Using Other People's Code
01:43

Express

7 lectures
Installing Express and Making it Easier to Build a Web Server
16:01
Routes
04:32
Static Files and Middleware
14:58
Templates and Template Engines
15:54
Querystring and Post Parameters
18:21
RESTful APIs and JSON
05:21
Structuring an App
13:45

Javascript, JSON, and Databases

5 lectures
Conceptual Aside: Relational Databases and SQL
03:48
Node and MySQL
09:28
Conceptual Aside: NoSQL and Documents
03:12
MongoDB and Mongoose
10:50
Web Server Checklist
01:07

The MEAN stack

6 lectures
MongoDB, Express, AngularJS, and NodeJS
06:58
AngularJS: Managing the Client
10:32
AngularJS: Managing the Client (Part 2)
08:09
AngularJS: Managing the Client (Part 3)
19:17
Conceptual Aside: Angular 1, Angular 2, React, and more…
03:06
Working with The Full Stack (and being a Full Stack Developer) - Part 1
11:59

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

7 lectures
NodeTodo: Software Requirements
02:20
Initial Setup
03:38
Setting up Mongo and Mongoose
09:09
Adding Seed Data
09:31
Creating our API
13:33
Testing our API
16:17
Adding a Front-End in Angular 2 (Part 1)
23:22

Đánh giá của học viên

Chưa có đánh giá
Course Rating
5
0%
4
0%
3
0%
2
0%
1
0%

Bình luận khách hàng

Viết Bình Luận

Bạn đánh giá khoá học này thế nào?

image

Đăng ký get khoá học Udemy - Unica - Gitiho giá chỉ 50k!

Get khoá học giá rẻ ngay trước khi bị fix.