Socket
Socket
Sign inDemoInstall

babel-plugin-transform-react-jsx-self

Package Overview
Dependencies
4
Maintainers
5
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-transform-react-jsx-self

Add a __self prop to all JSX Elements


Version published
Weekly downloads
415K
decreased by-2.5%
Maintainers
5
Install size
2.23 MB
Created
Weekly downloads
 

Readme

Source

babel-plugin-transform-react-jsx-self

Adds __self prop to JSX elements, which React will use to generate some runtime warnings. All React users should enable this transform in dev mode.

Example

In

<sometag />

Out

<sometag __self={this} />

Installation

npm install --save-dev babel-plugin-transform-react-jsx-self

Usage

.babelrc

{
  "plugins": ["transform-react-jsx-self"]
}

Via CLI

babel --plugins transform-react-jsx-self script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-react-jsx-self"]
});

Keywords

FAQs

Last updated on 20 Jan 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc