What is the purpose of module.exports in a Node.js module?
it is used for defining stuff that can be exported by a module. Whatever is exported from a module can, in turn, be made available to other modules
How do you import functionality into a Node.js module from another Node.js module?
Using the require function