September 2017
Intermediate to advanced
392 pages
12h 9m
English
A programmatic description of an API that doesn’t include an implementation. In Node.js, a good example is the Streams API.
A function written in a shorthand syntax. Instead of writing function () {}, write () => {} when passing functions as arguments to other functions. If the function accepts only one argument, the parentheses can be omitted.
Describes code that doesn’t necessarily run in the order in which it appears. In Node.js, this term is used to distinguish APIs that accept callbacks that will be run at a point in the future. For example, fs.readFile accepts a callback that receives the file’s contents after it has been read.
The libraries that are built ...
Read now
Unlock full access