What is a JavaScript module?
A single .js file
What values are passed into a Node.js module’s local scope?
exports, require, module, __filename, __dirname
Give two examples of truly global variables in a Node.js program.
Process and global
What is the purpose of module.exports in a Node.js module?
To export code into another module
How do you import functionality into a Node.js module from another Node.js module?
Require( ) and pass in the relative path of the file as a string