# babel-preset-nodely

> Babel preset used by nodely.

Latest version **0.4.3** (published 2021-06-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install babel-preset-nodely
pnpm add babel-preset-nodely
yarn add babel-preset-nodely
bun add babel-preset-nodely
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.4.3 |
| Published | 2021-06-01 |
| First published | 2018-05-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 6.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Matthew Dahl |
| Maintainers | sandersky, dogmaiobot |
| Keywords | babel, es2015, es6, flow, flowjs, modules, node, nodely, plugin, preset, transpile, transpiler |

## Links

- npm: https://www.npmjs.com/package/babel-preset-nodely
- Repository: https://github.com/dogma-io/babel-preset-nodely
- Homepage: https://github.com/dogma-io/babel-preset-nodely#readme
- Issues: https://github.com/dogma-io/babel-preset-nodely/issues
- npm.io page: https://npm.io/package/babel-preset-nodely

## Dependencies (8)

- [@babel/core](https://npm.io/package/@babel/core.md) ^7.0.0
- [@babel/preset-env](https://npm.io/package/@babel/preset-env.md) ^7.0.0
- [@babel/preset-flow](https://npm.io/package/@babel/preset-flow.md) ^7.0.0
- [@babel/preset-react](https://npm.io/package/@babel/preset-react.md) ^7.0.0
- [@babel/plugin-syntax-dynamic-import](https://npm.io/package/@babel/plugin-syntax-dynamic-import.md) ^7.0.0
- [@babel/plugin-proposal-class-properties](https://npm.io/package/@babel/plugin-proposal-class-properties.md) ^7.0.0
- [@babel/plugin-syntax-object-rest-spread](https://npm.io/package/@babel/plugin-syntax-object-rest-spread.md) ^7.0.0
- [@babel/plugin-proposal-optional-chaining](https://npm.io/package/@babel/plugin-proposal-optional-chaining.md) ^7.0.0

## 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

- 0.4.3 (latest) — 2021-06-01
- 0.4.2 — 2019-07-10
- 0.4.1 — 2018-10-10
- 0.4.0 — 2018-09-17
- 0.3.0 — 2018-09-02
- 0.2.0 — 2018-06-13
- 0.1.1 — 2018-06-05
- 0.1.0 — 2018-06-05
- 0.0.1 — 2018-05-28

## README

# babel-preset-nodely [![NPM][npm-img]][npm-url] [![Coverage][cov-img]][cov-url]

Babel preset used by [nodely](https://github.com/dogma-io/nodely).

## Table of Contents

*   [Installation](#installation)
*   [Documentation](#documentation)
*   [Code of Conduct](#code-of-conduct)
*   [Contributing](#contributing)
*   [License](#license)

## Installation

**npm**

```bash
npm install babel-preset-nodely
```

**yarn**

```bash
yarn add babel-preset-nodely
```

## Documentation

To use this preset simply include it in your Babel configuration for example:

*.babelrc*

```json
{
  "presets": ["nodely"]
}
```

### Loose mode

By default this preset will enable loose mode but you can turn it off like so:

```json
{
  "presets": [
    [
      "nodely",
      {
        "loose": false
      }
    ]
  ]
}
```

### Targets

Your build can target a specific minimum Node version:

```json
{
  "presets": [
    [
      "nodely",
      {
        "targets": {
          "node": 8
        }
      }
    ]
  ]
}
```

Your build can also target certain browser support:

```json
{
  "presets": [
    [
      "nodely",
      {
        "targets": {
          "browsers": ["last 2 versions", "ie10"],
        }
      }
    ]
  ]
}
```

## Code of Conduct

Please see the [code of conduct](CODE_OF_CONDUCT.md).

## Contributing

Please see the [contributing guide](CONTRIBUTING.md).

## License

[MIT](LICENSE.md)

[cov-img]: https://img.shields.io/codecov/c/github/dogma-io/babel-preset-nodely.svg "Code Coverage"
[cov-url]: https://codecov.io/gh/dogma-io/babel-preset-nodely

[npm-img]: https://img.shields.io/npm/v/babel-preset-nodely.svg "NPM Version"
[npm-url]: https://www.npmjs.com/package/babel-preset-nodely

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