
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
babel-plugin-react-create-element-alias
Advanced tools
A babel plugin to change React.createElement to an alias (_rce or other unique variable based on scope) so that it can be better handled in obfuscation (without object property mangling).
A babel plugin to change React.createElement to an alias (_rce or other unique variable based on scope) so that it can be better handled in obfuscation (without object property mangling).
npm install --save-dev babel-plugin-react-create-element-alias
Add it to your bablerc
{
"presets": ["react", "es2015"],
"plugins": ["babel-plugin-react-create-element-alias"]
}
Before Transpile
import React from 'react';
function SampleComponent(props) {
const {name} = props;
return (
<div className="wrapper">
<span className="name">{name}</span>
</div>
)
}
After Transpile
"use strict";
var _react = require("react");
var _react2 = _interopRequireDefault(_react);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var _rce = _react2.default.createElement;
function SampleComponent(props) {
var name = props.name;
return _rce(
"div",
{ className: "wrapper" },
_rce(
"span",
{ className: "name" },
name
)
);
}
I worked on this project to experiment with scope and bindings in babel plugin and later thought to open source it. Most of the time you may not need this plugin.
If you are using gzip / brotli / zopfli compression (which you always should). You might not see a significant reduction in compressed bundle size it may vary from bytes to few kbs. So you should test it before you finalize using it.
You may be using transform-react-jsx pragma if you have different method to handle creating element like in preact its h. You don't need this. But do note defining pragma does not add declaration of you pragma function in your file. for example it will not add import React, {createElement as rce} from 'react'
or const _rce = React.createElement
.
If you can mangle property with regex for createElement you will not need this.
FAQs
A babel plugin to change React.createElement to an alias (_rce or other unique variable based on scope) so that it can be better handled in obfuscation (without object property mangling).
The npm package babel-plugin-react-create-element-alias receives a total of 5 weekly downloads. As such, babel-plugin-react-create-element-alias popularity was classified as not popular.
We found that babel-plugin-react-create-element-alias 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.