A module can be "imported", or otherwise "required" by the require() function. For example, to load the http module that ships with Node.js, the following can be used:
const http = require('http');
Aside from modules that are shipped with the runtime, you can also require mod...