What is the purpose of module.exports in a Node.js module?
To pass anything to the require object which can be accessed by their relative path from another module.
How do you import functionality into a Node.js module from another Node.js module?
Calling the require object and passing one argument of a string containing a period then a relative path to the module.exports property in the other file.