In this blog post, I show how I created a preprocessor that takes any line starting with “// log -” and creates a temporary intermediary file where those lines are replaced with console.log statements to print any expressions following “// log -”. This approach is useful in several ways. It’s easier than using console.log directly, and when run without using the preprocessor, these log lines are simply ignored. The entire setup is straightforward, utilizing a Node.js environment variable/option to run the preprocessor.
You should look into how this is done at scale with something like Babel.<p>Babel parses JS into a AST (abstract syntax tree) and then lets you react to specific pieces of code.<p>Here is an example of the power of a tool like Babel: <a href="https://github.com/christina-de-martinez/babel-plugin-glowup-vibes/tree/main">https://github.com/christina-de-martinez/babel-plugin-glowup...</a>