An open API service indexing awesome lists of open source software.

https://github.com/hzoo/babel-preset-es2016

deprecated: babel-preset-es2016 is moved to the babel repo
https://github.com/hzoo/babel-preset-es2016

Last synced: 3 months ago
JSON representation

deprecated: babel-preset-es2016 is moved to the babel repo

Awesome Lists containing this project

README

        

# babel-preset-es2016

## Install

```sh
$ npm install --save-dev babel-preset-es2016
```

## Usage

### Via `.babelrc` (Recommended)

**.babelrc**

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

### Via CLI

```sh
$ babel script.js --presets es2016
```

### Via Node API

```javascript
require("babel-core").transform("code", {
presets: ["es2016"]
});
```