babel-plugin-macros
Last updated
Was this helpful?
Last updated
Was this helpful?
Allows you to build simple compile-time libraries
Check out on the Babel.js blog for a complete write up on the problem, motivation, and solution.
Currently, each babel plugin in the babel ecosystem requires that you configure it individually. This is fine for things like language features, but can be frustrating overhead for libraries that allow for compile-time code transformation as an optimization.
babel-plugin-macros defines a standard interface for libraries that want to use compile-time code transformation without requiring the user to add a babel plugin to their build system (other than babel-plugin-macros
, which is ideally already in place).
Babel cache problem
Note: This issue is not present when used in Create React App.
Most of the time you'll probably be using this with the babel cache enabled in webpack to rebuild faster. If your macro function is not pure which gets different output with same code (e.g., IO side effects) it will cause recompile mechanism fail. Unfortunately you'll also experience this problem while developing your macro as well. If there's not a change to the source code that's being transpiled, then babel will use the cache rather than running your macro again.
For now, to force recompile the code you can simply add a cache busting comment in the file:
This problem is still being worked on and is not unique to babel-plugin-macros
. For more details and workarounds, please check related issues below:
Please add any you don't see listed!
If we used babel-plugin-console
, it would look like this:
Add babel-plugin-console
to .babelrc
Use it in a code:
When that code is run, the scope
function does some pretty nifty things:
Browser:
Node:
Instead, let's use the macro it's shipped with like this:
Add babel-plugin-macros
to .babelrc
(only once for all macros)
Use it in a code:
The result is exactly the same, but this approach has a few advantages:
Advantages:
requires only one entry in .babelrc
for all macros used in project. Add that once and you can use all the macros you want
it's explicit. With console.scope
people may be fooled that it's just a normal console
API when there's really a babel transpilation going on. When you import scope
, it's obvious that it's macro and does something with the code at compile time. Some ESLint rules may also have issues with plugins that look for "global" variables
macros are safer and easier to write, because they receive exactly the AST node to process
If you misconfigure babel-plugin-console
you wont find out until you run the code. If you misconfigure babel-plugin-macros
you'll get a compile-time error.
Drawbacks:
Cannot (should not) be used for implicit transpilations (like syntax plugins)
Explicitness is more verbose. Which some people might consider a drawback...
This is another advantage of babel-plugin-macros
over regular plugins. The user of the macro is in control of the ordering! The order of execution is the same order as imported. The order of execution is clear, explicit and in full control of the user:
This differs from the current situation with babel plugins where it's prohibitively difficult to control the order plugins run in a particular file.
No! Any AST node type is supported.
It can be tagged template literal:
A function:
JSX Element:
Really, anything...
All examples above were explicit - a macro was imported and then evaluated with a specific AST node.
Explicit is often a better pattern than implicit because it requires others to understand how things are globally configured. This is in this spirit are babel-plugin-macros
designed. However, some things do need to be implicit, and those kinds of babel plugins can't be turned into macros.
Macros are processed at build-time and not required at runtime. They should be devDependencies.
MIT
This module is distributed via which is bundled with and should be installed as one of your project's devDependencies
:
You may like to watch to get an idea of what macros is and how it can be used.
Are you trying to use babel-plugin-macros
? Go to .
Are you trying to make your own macros that works with babel-plugin-macros
? Go to . (you should probably read the user docs too).
babel-plugin-preval:
graphql.macro:
You can write your own without publishing them to npm
, but if you'd like to see existing macros you can add to your project, then take a look at the repository.
Let's use as an example.
toolkits (like ) may already support babel-plugin-macros
, so no configuration is needed at all
See the for more examples.
Completely different story are implicit babel plugins, like , which process whole AST tree.
Thank you to for donating the npm package babel-plugin-macros
.
Thanks goes to these people ():
This project follows the specification. Contributions of any kind welcome!