- In the context of Node, what is a
module
?
A module is the functions and variables in one file made available to another file. They are exported from one file and required in the other.
- The code examples from the second blog post look very different from the first. Why?