April 2018
Beginner
536 pages
13h 21m
English
The Node.js core API, also known as node-core, is a set of libraries that are part of Node.js and, as a result, are installed in our OS when we install Node.js. The Node.js core API includes the following modules:
As we can see in the preceding list, there are modules to work with Domain Name Servers (DNS), working with HTTP requests (http), or reading and writing files to the hard disk (fs). Covering all these modules is out of the scope of this book. However, we are going to use some of them later in this chapter. ...