# babel-env

> Development environment for Babel.

Latest version **2.4.1** (published 2017-05-02) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install babel-env
pnpm add babel-env
yarn add babel-env
bun add babel-env
```

Provides the command `babel-env`.

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 2.4.1 |
| Published | 2017-05-02 |
| First published | 2016-02-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 10 |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| GitHub stars | 1 |
| Author | Epsitec |
| Maintainers | epsitec, schroeterm |
| Keywords | babel |

## Links

- npm: https://www.npmjs.com/package/babel-env
- Repository: https://github.com/epsitec-sa/babel-env
- Homepage: https://github.com/epsitec-sa/babel-env#readme
- Issues: https://github.com/epsitec-sa/babel-env/issues
- npm.io page: https://npm.io/package/babel-env

## Dependencies (10)

- [babel-cli](https://npm.io/package/babel-cli.md) ^6.24.0
- [babel-core](https://npm.io/package/babel-core.md) ^6.24.0
- [babel-polyfill](https://npm.io/package/babel-polyfill.md) ^6.23.0
- [babel-preset-env](https://npm.io/package/babel-preset-env.md) ^1.3.2
- [babel-preset-react](https://npm.io/package/babel-preset-react.md) ^6.23.0
- [babel-preset-stage-0](https://npm.io/package/babel-preset-stage-0.md) ^6.22.0
- [babel-plugin-transform-decorators](https://npm.io/package/babel-plugin-transform-decorators.md) ^6.22.0
- [babel-plugin-transform-class-properties](https://npm.io/package/babel-plugin-transform-class-properties.md) ^6.23.0
- [babel-plugin-transform-react-inline-elements](https://npm.io/package/babel-plugin-transform-react-inline-elements.md) ^6.22.0
- [babel-plugin-transform-react-constant-elements](https://npm.io/package/babel-plugin-transform-react-constant-elements.md) ^6.23.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

- 2.4.1 (latest) — 2017-05-02
- 2.4.0 — 2017-04-04
- 2.3.1 — 2017-04-02
- 2.3.0 — 2017-04-02
- 2.2.0 — 2017-04-02
- 2.1.0 — 2017-04-02
- 2.0.1 — 2017-04-02
- 2.0.0 — 2017-04-02
- 1.6.1 — 2017-04-02
- 1.6.0 — 2017-03-31
- 1.5.1 — 2017-03-28
- 1.5.0 — 2017-03-28
- 1.4.0 — 2017-03-28
- 1.3.1 — 2016-08-13
- 1.3.0 — 2016-05-18
- … 7 more at https://npm.io/package/babel-env/versions

## README

# babel-env

The `babel-env` npm package can be used to set up a consistent environment
for projects using Babel and running on node.js version 6 (at least).

```shell
npm install --save-dev babel-env
```

This will install all useful Babel packages and create a default `.babelrc`
file in the project root. The `.babelrc` file will automatically be updated
when updates of `babel-env` are installed.

See also [babel-env-test](https://github.com/epsitec-sa/babel-env-test) for
an example of how `babel-env` is used.

## Prevent automatic .babelrc overwrite

If you do not want your `.babelrc` to be overwritten by `babel-env`, add
a comment containing `babel-env-disable`, such as:

```json
// babel-env-disable
{
  "presets": [
    "es2015"
  ],
  "plugins": [
    "transform-es3-property-literals",
    "transform-es3-member-expression-literals"
  ]
}
```

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