Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
To use modules in your Node.js applications, you must require them after they have been downloaded. Requiring a module in your application looks like this:
var module = require('module');
Now, when you run your application, it will look for the source files for the library and include it in your application. Normally, you want to use the module so it is assigned to a variable.