Socket
Book a DemoInstallSign in
Socket

babel-plugin-transform-react-jsx-self

Package Overview
Dependencies
Maintainers
5
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

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

latest
Source
npmnpm
Version
6.22.0
Version published
Weekly downloads
451K
-31.94%
Maintainers
5
Weekly downloads
 
Created
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

babel-plugin

FAQs

Package last updated on 20 Jan 2017

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