Completed
You Don't Know Node Quick Intro to 5 Core Features
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
You Don't Know Node.js
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 You Don't Know Node Quick Intro to 5 Core Features
- 3 Starting with basics: Why Use Node?
- 4 Input/output is one of the most expensive type tasks ( CPU)
- 5 Node has non- blocking I/O
- 6 Blocking systems have to be multi- threaded
- 7 Node is single threaded... and that's good!
- 8 Who likes and understands callbacks?
- 9 Streams Abstractions for continuous chunking of data
- 10 Streams Inherit from Event Emitter
- 11 Input typically comes from the keyboard used to start the process.
- 12 Data written to standard output is visible on the command line.
- 13 What data type to use for binary data?
- 14 How to scale a single threaded system?
- 15 How to handle async errors?
- 16 C++ Addons