# babel-plugin-transform-dyng-jsx

> Turn JSX into Dyng function calls

Latest version **6.8.1** (published 2022-10-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install babel-plugin-transform-dyng-jsx
pnpm add babel-plugin-transform-dyng-jsx
yarn add babel-plugin-transform-dyng-jsx
bun add babel-plugin-transform-dyng-jsx
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 6.8.1 |
| Published | 2022-10-09 |
| First published | 2022-10-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | nkduy |
| Keywords | babel-plugin |

## Links

- npm: https://www.npmjs.com/package/babel-plugin-transform-dyng-jsx
- Repository: https://github.com/dyngjs/dyng-babel.git#main
- Homepage: https://github.com/dyngjs/dyng-babel/tree/main#readme
- Issues: https://github.com/dyngjs/dyng-babel/issues
- npm.io page: https://npm.io/package/babel-plugin-transform-dyng-jsx

## Dependencies (3)

- [babel-runtime](https://npm.io/package/babel-runtime.md) ^6.0.0
- [babel-plugin-syntax-jsx](https://npm.io/package/babel-plugin-syntax-jsx.md) ^6.8.0
- [babel-helper-builder-dyng-jsx](https://npm.io/package/babel-helper-builder-dyng-jsx.md) ^6.8.1

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 6.8.1 (latest) — 2022-10-09

## README

# babel-plugin-transform-dyng-jsx

Turn JSX into Dyng function calls

## Installation

```sh
$ npm install babel-plugin-transform-dyng-jsx
```

## Usage

### Via `.babelrc` (Recommended)

**.babelrc**

```js
// without options
{
  "plugins": ["transform-dyng-jsx"]
}
// with options
{
  "plugins": [
    ["transform-dyng-jsx", {
      "pragma": "dom" // default pragma is Dyng.createElement
    }]
  ]
}
```

### Via CLI

```sh
$ babel --plugins transform-dyng-jsx script.js
```

### Via Node API

```javascript
require("babel-core").transform("code", {
  plugins: ["transform-dyng-jsx"]
});
```

---
_Source: https://npm.io/package/babel-plugin-transform-dyng-jsx · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
