Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-react-create-element-alias

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-react-create-element-alias

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).

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-react-create-element-alias

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).

  • Supports import and require syntax for React.
  • Supports async imports and requirejs syntax for React.

Usage

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
    )
  );
}

Before you add this to your project

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

Package last updated on 20 Jan 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc