| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| lib/ | 2023-06-19 12:50 | - | ||
| package.json | 2023-06-19 12:52 | 1.3K | ||
| README.md | 2016-10-17 22:44 | 369 |
# babel-plugin-syntax-jsx
## Installation
```sh
$ npm install babel-plugin-syntax-jsx
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["syntax-jsx"]
}
```
### Via CLI
```sh
$ babel --plugins syntax-jsx script.js
```
### Via Node API
```javascript
require("babel-core").transform("code", {
plugins: ["syntax-jsx"]
});
```