Require is a statement that Node interprets as, in some sense, a getter function. For example, say you have a file named analysis.js, and the inside of your file looks like this,
function analyzeWeather(weather_data) {
console.log('Weather information for ' + weather_data.time + ': ');
consol...