npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

swc-plugin-component-annotate

v1.17.1

Published

Use SWC to automatically annotate React components with data attributes for component tracking

Readme

SWC Plugin: Component Annotate npm badge

A SWC plugin that automatically annotates React components with data attributes for component tracking and debugging.

Overview

This plugin transforms React components by adding data attributes that help with tracking and debugging. It automatically identifies React components (function components, arrow function components, and class components) and adds the following attributes:

  • data-component: The component name (added to root elements)
  • data-element: The element/component name (added to non-HTML elements)
  • data-source-file: The source filename

Features

  • Function Components: function MyComponent() { ... }
  • Arrow Function Components: const MyComponent = () => { ... }
  • Class Components: class MyComponent extends Component { ... }
  • React Fragments: Supports Fragment, React.Fragment, and <> syntax
  • Nested Components: Properly handles component hierarchies
  • React Native Support: Uses camelCase attributes when configured
  • Configurable: Ignore specific components, annotate fragments, etc.

Installation

npm install --save-dev swc-plugin-component-annotate

Usage

Basic Configuration

Add the plugin to your .swcrc configuration:

{
  "jsc": {
    "experimental": {
      "plugins": [
        ["swc-plugin-component-annotate", {}]
      ]
    }
  }
}

Configuration Options

{
  "jsc": {
    "experimental": {
      "plugins": [
        ["swc-plugin-component-annotate", {
          "native": false,
          "ignored-components": ["MyIgnoredComponent"],
          "transparent-components": ["Flex", "Stack"],
          "component-attr": "data-sentry-component",
          "element-attr": "data-sentry-element",
          "source-file-attr": "data-sentry-source-file"
        }]
      ]
    }
  }
}

Options

  • native (boolean, default: false): Use React Native attribute names (camelCase)

    • false: data-component, data-element, data-source-file
    • true: dataComponent, dataElement, dataSourceFile
  • ignored-components (array, default: []): List of component names to skip during annotation

  • transparent-components (array, default: []): List of pass-through component names that should receive an Owner-Component annotation instead of being reported as their own element. This is useful for layout primitives such as Flex, Stack, Grid, or Container, and for design-system primitives when caller context is preferred.

  • component-attr (string, optional): Custom component attribute name (overrides default and native setting)

  • element-attr (string, optional): Custom element attribute name (overrides default and native setting)

  • source-file-attr (string, optional): Custom source file attribute name (overrides default and native setting)

Sentry Integration

To use Sentry-specific attribute names for compatibility with Sentry's tracking:

{
  "jsc": {
    "experimental": {
      "plugins": [
        ["swc-plugin-component-annotate", {
          "component-attr": "data-sentry-component",
          "element-attr": "data-sentry-element",
          "source-file-attr": "data-sentry-source-file",
          "transparent-components": ["Container", "Flex", "Grid", "Stack"]
        }]
      ]
    }
  }
}

This will generate attributes like:

<div data-sentry-component="MyComponent" data-sentry-source-file="MyComponent.jsx">
  <CustomButton data-sentry-element="CustomButton" data-sentry-source-file="MyComponent.jsx">
    Click me
  </CustomButton>
</div>

Transparent Components

Use transparent-components for components where the caller is more useful context than the component's own implementation. Layout primitives are the typical case:

function IssueActions() {
  return (
    <Flex>
      <Button>Resolve</Button>
    </Flex>
  );
}

In this example, Flex is layout plumbing. With Flex configured as transparent, the layout wrapper records both its owner and its own callsite name without reporting itself as the element:

function IssueActions() {
  return (
    <Flex data-sentry-component="IssueActions-Flex" data-sentry-source-file="issueActions.tsx">
      <Button data-sentry-element="Button" data-sentry-source-file="issueActions.tsx">
        Resolve
      </Button>
    </Flex>
  );
}

If the React component Button is also configured as transparent, it gets the same root owner with its own component name. Transparent wrappers do not accumulate in nested labels:

function IssueActions() {
  return (
    <Flex data-sentry-component="IssueActions-Flex" data-sentry-source-file="issueActions.tsx">
      <Button data-sentry-component="IssueActions-Button" data-sentry-source-file="issueActions.tsx">
        Resolve
      </Button>
    </Flex>
  );
}

For a Button implementation that forwards props to a button, those owner attributes become the final DOM attributes.

If a transparent component renders a polymorphic DOM element internally, that implementation is not annotated. Forwarded attributes can pass through instead of being overwritten by the transparent component's own file:

const Container = memo(function Container({as: Component = 'div', ...props}) {
  return <Component {...props} />;
});

The useful result is that layout DOM retains both the owner and the transparent callsite, rather than pointing at Flex or flex.tsx alone:

<div data-sentry-component="IssueActions-Flex" data-sentry-source-file="issueActions.tsx">
  ...
</div>

Whether to include components such as Button, Link, Checkbox, or MenuItem depends on the signal you want in the DOM. Leave them out of transparent-components when their component name should be reported as an element. Include them when the combined label is more useful, for example IssueActions-Button.

Use ignored-components only when a component should not participate in annotation at all. Ignored components get no generated attributes. Use transparent-components when a component should still receive useful owner metadata, but should not report itself as data-sentry-element.

Examples

Input

import React from 'react';

const MyComponent = () => {
  return (
    <div>
      <h1>Hello World</h1>
      <button>Click me</button>
    </div>
  );
};

export default MyComponent;

Output

import React from 'react';

const MyComponent = () => {
  return (
    <div data-component="MyComponent" data-source-file="MyComponent.jsx">
      <h1>Hello World</h1>
      <button>Click me</button>
    </div>
  );
};

export default MyComponent;

Class Component Example

// Input
class MyClassComponent extends Component {
  render() {
    return <div><h1>Hello from class</h1></div>;
  }
}

// Output
class MyClassComponent extends Component {
  render() {
    return <div data-component="MyClassComponent" data-source-file="MyComponent.jsx">
      <h1>Hello from class</h1>
    </div>;
  }
}

React Native Example

With "native": true:

// Output
const MyComponent = () => {
  return (
    <View dataComponent="MyComponent" dataSourceFile="MyComponent.jsx">
      <Text>Hello World</Text>
    </View>
  );
};

Related