1.2.0 • Published 7 years ago

babel-plugin-component-identification v1.2.0

Weekly downloads
2,600
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-component-identification


Identifies react components and adds a data-component-id to them with their identifier, this was made with the intention of aiding automated testing through easier DOM selectors and should not be used in production.

<div data-component-id="ExampleComponent">I am component</div>

This plugin identifies a component if it detects:

  • An instance of a class with a render method that returns JSX
  • A function that returns JSX

Install

npm install --save-dev babel-plugin-component-identification

Usage (.babelrc)

{
    "plugins": ["component-identification"]
}