- In the context of Node, what is a
module
?
Answer: A module is essentially just a file in Node. You export what you want to be available when requiring the file.
- The code examples from the second blog post look very different from the first. Why?
Answer: Theyre using RequireJS to add some functionality specific to their scenarios.