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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@wordpress/babel-plugin-import-jsx-pragma

v4.41.0

Published

Babel transform plugin for automatically injecting an import to be used as the pragma for the React JSX Transform plugin.

Downloads

402,621

Readme

Babel Plugin Import JSX Pragma

Babel transform plugin for automatically injecting an import to be used as the pragma for the React JSX Transform plugin.

JSX is merely a syntactic sugar for a function call, typically to React.createElement when used with React. As such, it requires that the function referenced by this transform be within the scope of the file where the JSX occurs. In a typical React project, this means React must be imported in any file where JSX exists.

Babel Plugin Import JSX Pragma automates this process by introducing the necessary import automatically wherever JSX exists, allowing you to use JSX in your code without thinking to ensure the transformed function is within scope. It respects existing import statements, as well as scope variable declarations.

Installation

Install the module to your project using npm.

npm install @wordpress/babel-plugin-import-jsx-pragma

Note: This package requires Node.js 14.0.0 or later. It is not compatible with older versions.

Usage

Refer to the Babel Plugins documentation if you don't yet have experience working with Babel plugins.

Include @wordpress/babel-plugin-import-jsx-pragma (and @babel/plugin-transform-react-jsx) as plugins in your Babel configuration. If you don't include both you will receive errors when encountering JSX tokens.

// .babelrc.js
module.exports = {
	plugins: [
		'@wordpress/babel-plugin-import-jsx-pragma',
		'@babel/plugin-transform-react-jsx',
	],
};

Note: @wordpress/babel-plugin-import-jsx-pragma is included in @wordpress/babel-preset-default (default preset for WordPress development) starting from v4.0.0. If you are using this preset, you shouldn't include this plugin in your Babel config.

Options

As the @babel/plugin-transform-react-jsx plugin offers options to customize the pragma to which the transform references, there are equivalent options to assign for customizing the imports generated.

For example, if you are using the react package, you may want to use the following configuration:

// .babelrc.js
module.exports = {
	plugins: [
		[
			'@wordpress/babel-plugin-import-jsx-pragma',
			{
				scopeVariable: 'createElement',
				scopeVariableFrag: 'Fragment',
				source: 'react',
				isDefault: false,
			},
		],
		[
			'@babel/plugin-transform-react-jsx',
			{
				pragma: 'createElement',
				pragmaFrag: 'Fragment',
			},
		],
	],
};

scopeVariable

Type: String

Name of variable required to be in scope for use by the JSX pragma. For the default pragma of React.createElement, the React variable must be within scope.

scopeVariableFrag

Type: String

Name of variable required to be in scope for <></> Fragment JSX. Named <Fragment /> elements expect Fragment to be in scope and will not add the import.

source

Type: String

The module from which the scope variable is to be imported when missing.

isDefault

Type: Boolean

Whether the scopeVariable is the default import of the source module. Note that this has no impact on scopeVariableFrag.

Contributing to this package

This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to npm and used by WordPress as well as other software projects.

To find out more about contributing to this package or Gutenberg as a whole, please read the project's main contributor guide.