What is the purpose of module.exports in a Node.js module?
To export code to be used elsewhere. There to specify what in that file should be available to other modules that require it.
How do you import functionality into a Node.js module from another Node.js module?
require()