
Every file is wrapped in an IIFE . It makes the code locally scoped, preventing global pollution. That's why variables like require are available within your file, and why your top-level variables appear in "Local" scope in the debugger, not truly global. #Nodejs #ModuleSystem


English













