Node.js: How to Create a Module
A module is basically a construct for organizing a set of related functionality, similar to a class. An important note to remember is that modules are automatically cached by your node.js application upon first load, so this means that your application will always reference the same cached obj...
