Settings

Theme

Node.js PrePrcoessor – Extend Node.js to support macros/utility functions

bbarrows.com

2 points by bebrws a year ago · 2 comments

Reader

bebrwsOP a year ago

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.

bearjaws a year ago

You should look into how this is done at scale with something like Babel.

Babel parses JS into a AST (abstract syntax tree) and then lets you react to specific pieces of code.

Here is an example of the power of a tool like Babel: https://github.com/christina-de-martinez/babel-plugin-glowup...

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection