# es6-template-strings-jsx

> Transform ES6 Tagged Template Strings with JSX into JS

Latest version **1.0.1** (published 2015-01-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install es6-template-strings-jsx
pnpm add es6-template-strings-jsx
yarn add es6-template-strings-jsx
bun add es6-template-strings-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 | 1.0.1 |
| Published | 2015-01-21 |
| First published | 2015-01-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 38 |
| Author | Andrey Popp |
| Maintainers | andreypopp |
| Keywords | es6, jsx, template-strings, transform, webpack, webpack-loader |

## Links

- npm: https://www.npmjs.com/package/es6-template-strings-jsx
- Repository: https://github.com/andreypopp/es6-template-strings-jsx
- Issues: https://github.com/andreypopp/es6-template-strings-jsx/issues
- npm.io page: https://npm.io/package/es6-template-strings-jsx

## Dependencies (2)

- [recast](https://npm.io/package/recast.md) ^0.9.15
- [react-tools](https://npm.io/package/react-tools.md) ^0.12.2

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2015-01-21
- 1.0.0 — 2015-01-21

## README

# ES6 JSX-Tagged Template Strings to JS transform

This is a syntax transform which transforms ES6 JSX-Tagged Template Strings to
JS. For example:

    var element = jsx`
      <p>
        Hello, ${name}!
      </p>
    `;

is being transformed into:

    var element = React.createElement('p',
      'Hello, ', name
    );

## Installation

    % npm install es6-template-strings-jsx

## Using with Webpack

Webpack loader is included as `es6-template-strings-jsx/loader`.

---
_Source: https://npm.io/package/es6-template-strings-jsx · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
