Hands-on Node.js
Hands-on Node.js
About the Book
In this e-book we will analyze what makes Node a different proposal from all that is out there, why you should use it, and how to get started. It starts with an overview but quickly dives into the code, module by module. By the end of this book you should be able to build your own Node service producers and consumers, and also feel comfortable around the Node API and conventions.
By the end of it you should be able to build your own Node modules, as well as test and debug them.
Bundles that include this book
Table of Contents
-
Introduction
- Why the sudden, exponential popularity?
- What does this book cover?
- What does this book not cover?
- Prerequisites
- Exercises
- Source code
- Where will this book lead you?
-
Why?
-
Why the event loop?
- Solution 1: Create more call stacks
- Solution 2: Use event-driven I/O
-
Why JavaScript?
-
How I Learned to Stop Fearing and Love JavaScript
- Function Declaration Styles
- Functions are first-class objects
- JSHint
- JavaScript versions
-
How I Learned to Stop Fearing and Love JavaScript
- References
-
Why the event loop?
-
Starting up
- Install Node
-
Understanding
-
Understanding the Node event loop
- An event-queue processing loop
- Callbacks that will generate events
- Don’t block!
-
Understanding the Node event loop
-
Modules and NPM
-
Modules
-
How Node resolves a module path
- Core modules
- Modules with complete or relative path
- As a file
- As a directory
- As an installed module
-
How Node resolves a module path
-
NPM - Node Package Manager
- Global vs. Local
-
NPM commands
- npm ls [filter]
- npm install package[@filters]
- npm rm package_name[@version] [package_name[@version] …]
- npm view [@] [[.]…]
- The Package.json Manifest
-
Modules
-
Utilities
- console
- util
-
Buffers
- Slice a buffer
- Copy a buffer
-
Buffer Exercises
- Exercise 1
- Exercise 2
- Exercise 3
-
Event Emitter
- Creating an Event Emitter
-
Event Emitter Exercises
- Exercise 1
- Exercise 2
-
Timers
- setTimeout
- clearTimeout
- setInterval
- clearInterval
-
setImmediate
- Escaping the event loop
- A note on tail recursion
-
Low-level file-system
- fs.stat and fs.fstat
- Open a file
- Read from a file
-
Write into a file
- Close Your files
-
File-system Exercises
- Exercise 1 - get the size of a file
- Exercise 2 - read a chunk from a file
- Exercise 3 - read two chunks from a file
- Exercise 4 - Overwrite a file
- Exercise 5 - append to a file
- Exercise 6 - change the content of a file
-
HTTP
-
HTTP Server
-
The http.ServerRequest object
- req.url
- req.method
- req.headers
-
The http.ServerResponse object
- Write a header
- Change or set a header
- Remove a header
- Write a piece of the response body
-
The http.ServerRequest object
-
HTTP Client
-
- http.get()
- http.request()
-
-
HTTP Exercises
- Exercise 1
- Exercise 2
- Exercise 3
- Exercise 4
-
HTTP Server
-
Streams
-
ReadStream
- Wait for data
- Know when it ends
- Pause it
- Resume it
-
WriteStream
- Write to it
- Wait for it to drain
-
Some stream examples
- Filesystem streams
- Network streams
-
The Slow Client Problem and Back-pressure
- What can we do?
- Pipe
-
ReadStream
-
TCP
- Write a string or a buffer
- end
- …and all the other methods
- Idle sockets
- Keep-alive
- Delay or no delay
- server.close()
- Listening
- TCP client
- Error handling
-
TCP Exercises
- Exercise 1
- Exercise 2
-
Datagrams (UDP)
- Datagram server
- Datagram client
-
Datagram Multicast
- Receiving multicast messages
- Sending multicast messages
- What can be the datagram maximum size?
-
UDP Exercises
- Exercise 1
-
Child processes
- Executing commands
- Spawning processes
- Killing processes
-
Child Processes Exercises
- Exercise 1
-
Streaming HTTP chunked responses
-
- A streaming example
-
Streaming Exercises
- Exercise 1
-
-
TLS / SSL
-
Public / private keys
- Private key
- Public key
- TLS Client
-
TLS Server
- Verification
-
TLS Exercises
- Exercise 1
- Exercise 2
- Exercise 3
- Exercise 4
- Exercise 5
-
Public / private keys
-
HTTPS
- HTTPS Server
- HTTPS Client
-
Making modules
- CommonJS modules
- One file module
- An aggregating module
- A pseudo-class
- A pseudo-class that inherits
-
node_modules and npm bundle
- Bundling
-
Debugging
- console.log
- Node built-in debugger
- Node Inspector
- Live edit
-
Automated Unit Testing
- A test runner
-
Assertion testing module
-
should.js
-
- Assert truthfulness:
- or untruthfulness:
- = true
- = false
- emptiness
- equality
- equal (strict equality)
- assert numeric range (inclusive) with within
- test numeric value is above given value:
- test numeric value is below given value:
- matching regular expressions
- test length
- substring inclusion
- assert typeof
- property existence
- array containment
- own object keys
- responds to, asserting that a given property is a function:
-
-
should.js
- Putting it all together
-
Callback flow
- The boomerang effect
-
Using caolan/async
-
Collections
- Parallel Iterations
- async.forEach
- async.map
- async.forEachLimit
- async.filter
- async.reject
- async.reduce
- async.detect
- async.some
- async.every
-
Flow Control
- async.series
- async.parallel
- async.whilst
- async.until
- async.waterfall
- async.queue
-
Collections
-
Appendix - Exercise Results
-
Chapter: Buffers
-
Exercise 1
- One Solution:
-
Exercise 2
- One Solution:
-
Exercise 3
- One Solution:
-
Exercise 1
-
Chapter: Event Emitter
-
Exercise 1
- One Solution:
-
Exercise 2
- One Solution:
-
Exercise 1
-
Chapter: Low-level File System
-
Exercise 1 - get the size of a file
- One Solution:
-
Exercise 2 - read a chunk from a file
- One Solution:
-
Exercise 3 - read two chunks from a file
- One Solution:
-
Exercise 4 - Overwrite a file
- One Solution:
-
Exercise 5 - append to a file
- One Solution:
-
Exercise 6 - change the content of a file
- One Solution:
-
Exercise 1 - get the size of a file
-
Chapter: HTTP
-
Exercise 1
- One Solution:
-
Exercise 2
- One Solution:
-
Exercise 3
- One Solution:
-
Exercise 4
- One Solution:
-
Exercise 1
-
Chapter: Child processes
-
Exercise 1
- One Solution:
-
Exercise 1
-
Chapter: Streaming HTTP Chunked responses
-
Exercise 1
- One Solution:
-
Exercise 1
-
Chapter: UDP
-
Exercise 1
- One Solution:
-
Exercise 1
-
Chapter: TCP
-
Exercise 1
- One Solution:
-
Exercise 2
- One Solution:
-
Exercise 1
-
Chapter: SSL / TLS
-
Exercise 1
- One Solution:
-
Exercise 2
- One Solution:
-
Exercise 3
- One Solution:
-
Exercise 4
- One Solution:
-
Exercise 5
- One Solution:
-
Exercise 1
-
Chapter: Buffers
Authors have earned$10,080,957writing, publishing and selling on Leanpub, earning 80% royalties while saving up to 25 million pounds of CO2 and up to 46,000 trees.
Learn more about writing on Leanpub
The Leanpub 45-day 100% Happiness Guarantee
Within 45 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
See full terms
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers), EPUB (for phones and tablets) and MOBI (for Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them
Top Books
C++ Best Practices
Jason TurnerLevel up your C++, get the tools working for you, eliminate common problems, and move on to more exciting things!
Digital-First Events
Joep Piscaer and Jana BorutaThe only resource you will ever need to launch your digital events program.
C++20
Rainer GrimmC++20 is the next big C++ standard after C++11. As C++11 did it, C++20 changes the way we program modern C++. This change is, in particular, due to the big four of C++20: ranges, coroutines, concepts, and modules.
The book is almost daily updated. These incremental updates ease my interaction with the proofreaders.
Sockets and Pipes
Type ClassesSockets and Pipes is not an introduction to Haskell; it is an introduction to writing software in Haskell. Using a handful of everyday Haskell libraries, this book walks through reading the HTTP specification and implementing it to create a web server.
Atomic Kotlin
Bruce Eckel and Svetlana IsakovaFor both beginning and experienced programmers! From the author of the multi-award-winning Thinking in C++ and Thinking in Java together with a member of the Kotlin language team comes a book that breaks the concepts into small, easy-to-digest "atoms," along with exercises supported by hints and solutions directly inside IntelliJ IDEA!
Algebra-Driven Design
Sandy MaguireA how-to field guide on building leak-free abstractions and algebraically designing real-world applications.
Introducing EventStorming
Alberto BrandoliniThe deepest tutorial and explanation about EventStorming, straight from the inventor.
node-opcua by example
Etienne RossignonGet the best out of node-opcua through a set of documented examples by the author himself that will allow you to create stunning OPCUA Servers or Clients.
Ansible for DevOps
Jeff GeerlingAnsible is a simple, but powerful, server and configuration management tool. Learn to use Ansible effectively, whether you manage one server—or thousands.
Cloud Strategy
Gregor Hohpe“Strategy is the difference between making a wish and making it come true.” A successful migration to the cloud can transform your organization, but it shouldn’t be driven by wishes. This book tells you how to develop a sound strategy guided by frameworks and decision models without being overly abstract nor getting lost in product details.
Top Bundles
- #1
Software Architecture for Developers: Volumes 1 & 2 - Technical leadership and communication
2 Books
"Software Architecture for Developers" is a practical and pragmatic guide to modern, lightweight software architecture, specifically aimed at developers. You'll learn:The essence of software architecture.Why the software architecture role should include coding, coaching and collaboration.The things that you really need to think about before... - #2
Django for Beginners/APIs/Professionals
3 Books
- #3
CCIE Service Provider Ultimate Study Bundle
2 Books
Piotr Jablonski, Lukasz Bromirski, and Nick Russo have joined forces to deliver the only CCIE Service Provider training resource you'll ever need. This bundle contains a detailed and challenging collection of workbook labs, plus an extensively detailed technical reference guide. All of us have earned the CCIE Service Provider certification... - #4
Cisco CCNA 200-301 Complet
4 Books
Ce lot comprend les quatre volumes du guide préparation à l'examen de certification Cisco CCNA 200-301. - #5
Linux Administration Complet
4 Books
Ce lot comprend les quatre volumes du Guide Linux Administration :Linux Administration, Volume 1, Administration fondamentale : Guide pratique de préparation aux examens de certification LPIC 1, Linux Essentials, RHCSA et LFCS. Administration fondamentale. Introduction à Linux. Le Shell. Traitement du texte. Arborescence de fichiers. Sécurité... - #6
Modern Management Made Easy
3 Books
Read all three Modern Management Made Easy books. Learn to manage yourself, lead and serve others, and lead the organization. - #7
PowerShell
3 Books
Buy every PowerShell book from Adam Bertram at a 20% discount! - #8
Mastering Containers
2 Books
Docker and Kubernetes are taking the world by storm! These books will get you up-to-speed fast! Docker Deep Dive is over 400 pages long, and covers all objectives on the Docker Certified Associate exam.The Kubernetes Book includes everything you need to get up and running with Kubernetes! - #9
CCDE Practical Studies (All labs)
3 Books
CCDE lab - #10
All the Books of The Medical Futurist
6 Books
We put together the most popular books from The Medical Futurist to provide a clear picture about the major trends shaping the future of medicine and healthcare. Digital health technologies, artificial intelligence, the future of 20 medical specialties, big pharma, data privacy, digital health investments and how technology giants such as Amazon...