Problem Statement
What is NODE_ENV and why is it important?
Explanation
NODE_ENV defines the environment in which the app runs — 'development', 'test', or 'production'. It controls configuration like logging, performance optimization, and debug settings. Production mode improves speed and disables verbose logs.