What is the purpose of module.exports in a Node.js module?
is to add properties or methods in the export object so that it can be used in other modules.
How do you import functionality into a Node.js module from another Node.js module?
assign it to exports property of the module object and other page use require() method.