
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
babel-plugin-transform-react-jsx
Advanced tools
Turn JSX into React function calls
In
var profile = <div>
<img src="avatar.png" className="profile" />
<h3>{[user.firstName, user.lastName].join(' ')}</h3>
</div>;
Out
var profile = React.createElement("div", null,
React.createElement("img", { src: "avatar.png", className: "profile" }),
React.createElement("h3", null, [user.firstName, user.lastName].join(" "))
);
In
/** @jsx dom */
var { dom } = require("deku");
var profile = <div>
<img src="avatar.png" className="profile" />
<h3>{[user.firstName, user.lastName].join(' ')}</h3>
</div>;
Out
/** @jsx dom */
var dom = require("deku").dom;
var profile = dom( "div", null,
dom("img", { src: "avatar.png", className: "profile" }),
dom("h3", null, [user.firstName, user.lastName].join(" "))
);
npm install --save-dev babel-plugin-transform-react-jsx
.babelrc (Recommended).babelrc
Without options:
{
"plugins": ["transform-react-jsx"]
}
With options:
{
"plugins": [
["transform-react-jsx", {
"pragma": "dom" // default pragma is React.createElement
}]
]
}
babel --plugins transform-react-jsx script.js
require("babel-core").transform("code", {
plugins: ["transform-react-jsx"]
});
pragmastring, defaults to React.createElement.
Replace the function used when compiling JSX expressions.
Note that the @jsx React.DOM pragma has been deprecated as of React v0.12
useBuiltInsboolean, defaults to false.
When spreading props, use Object.assign directly instead of Babel's extend helper.
babel-plugin-jsx is a Babel plugin that also transforms JSX syntax into JavaScript. It is similar to babel-plugin-transform-react-jsx but offers more flexibility in terms of customization and supports multiple JSX libraries.
babel-plugin-inferno is a Babel plugin specifically designed for the Inferno library, which is a fast, React-like library for building user interfaces. It transforms JSX syntax into Inferno.createElement calls.
FAQs
Turn JSX into React function calls
The npm package babel-plugin-transform-react-jsx receives a total of 624,378 weekly downloads. As such, babel-plugin-transform-react-jsx popularity was classified as popular.
We found that babel-plugin-transform-react-jsx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.