Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
babel-macros
Advanced tools
Enables zero-config, importable babel plugins
Check out this guest post 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-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-macros
, which is ideally
already in place).
For instance, many css-in-js libraries have a css tagged template string function:
const styles = css`
.red {
color: red;
}
`;
The function compiles your css into (for example) an object with generated class names for each of the classes you defined in your css:
console.log(styles); // { red: "1f-d34j8rn43y587t" }
This class name can be generated at runtime (in the browser), but this has some disadvantages:
To help solve those issues, many css-in-js libraries write their own babel plugin that generates the class names at compile-time instead of runtime:
// Before running through babel:
const styles = css`
.red {
color: red;
}
`;
// After running through babel, with the library-specific plugin:
const styles = { red: "1f-d34j8rn43y587t" };
If the css-in-js library supported babel-macros instead, then they wouldn't need their own babel plugin to compile these out; they could instead rely on babel-macros to do it for them. So if a user already had babel-macros installed and configured with babel, then they wouldn't need to change their babel configuration to get the compile-time benefits of the library. This would be most useful if the boilerplate they were using came with babel-macros out of the box, which is what we're hoping will be true for create-react-app in the future.
Although css-in-js is the most common example, there are lots of other things
you could use babel-macros
for, like:
This module is distributed via npm which is bundled with node and
should be installed as one of your project's devDependencies
:
npm install --save-dev babel-macros
Are you trying to use babel-macros
? Go to
other/docs/user.md
.
Are you trying to make your own macros that works with babel-macros
? Go to
other/docs/author.md
.
(you should probably read the user docs too).
Suppose we have a plugin node-eval
, which evaluates a node expression at compile time.
If we used babel-plugin-node-eval
, it would look like this:
babel-plugin-node-eval
to .babelrc
const val = nodeEval`fs.readDirSync('./fleet')`
// ↓ ↓ ↓ compiles to ↓ ↓ ↓
const val = ['red_leader', 'blue_leader']
Instead, if there were a macro called node-eval.macro
, we could use
it like this:
babel-macros
to .babelrc
(only once for all macros)import nodeEval from 'node-eval.macro'
const val = nodeEval`fs.readDirSync('./fleet')`
// ↓ ↓ ↓ compiles to ↓ ↓ ↓
const val = ['red_leader', 'blue_leader']
Advantages:
.babelrc
for all macros used in projectbabel-macros
, so no configuration is needednode-eval
is macro and does something with the code at compile timeBy the way, something like
node-eval
actually exists and it's called babel-plugin-preval.
In the same order as imported. The order of execution is clear, explicit and in full control of the user:
import nodeEval from 'node-eval.macro'
import css from 'css-in-js.macro'
# First are evaluated `node-eval` macros, then `css` macros
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:
import eval from 'eval.macro'
const val = eval`7 * 6`
A function:
import eval from 'eval.macro'
const val = eval('7 * 6')
JSX Element:
import Eval from 'eval.macro'
const val = <Eval>7 * 6</Eval>
Really, anything...
See the testing snapshot for more examples.
All examples above were explicit - a macro was imported and then evaluated with a specific AST node.
Completely different story are implicit babel plugins, like transform-react-constant-elements, which process whole AST tree.
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-macros
designed.
However, some things do need to be implicit, and those kinds of babel plugins can't be
turned into macros.
Thanks goes to these people (emoji key):
Kent C. Dodds 💻 📖 🚇 ⚠️ | Sunil Pai 🤔 | Stephen Scott 💬 📖 | Michiel Dral 🤔 | Kye Hohenberger 🤔 | Mitchell Hamilton 💻 ⚠️ | Justin Hall 📖 |
---|---|---|---|---|---|---|
Brian Pedersen 💻 📖 | Andrew Palm 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!
MIT
FAQs
It is now [babel-plugin-macros](https://www.npmjs.com/package/babel-plugin-macros).
The npm package babel-macros receives a total of 2,161 weekly downloads. As such, babel-macros popularity was classified as popular.
We found that babel-macros demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.