Concept Flow - CommonJS require and module.exports
Start: File A wants code from File B
File A calls require('File B')
Node reads File B
Node executes File B
File B sets module.exports
Node returns module.exports to File A
File A uses imported code
End
This flow shows how one file asks for code from another using require, Node runs the second file, and returns what it exports.