# gobble-esnext

> Compile ES6 files with gobble and esnext

Latest version **0.1.1** (published 2014-08-18) · 0 weekly downloads

## Install

```sh
npm install gobble-esnext
pnpm add gobble-esnext
yarn add gobble-esnext
bun add gobble-esnext
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2014-08-18 |
| First published | 2014-08-16 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Rich Harris |
| Maintainers | rich_harris |
| Keywords | gobble |

## Links

- npm: https://www.npmjs.com/package/gobble-esnext
- npm.io page: https://npm.io/package/gobble-esnext

## Dependencies (2)

- [esnext](https://npm.io/package/esnext.md) ~0.8.3
- [gobble](https://npm.io/package/gobble.md) ^0.2.0

## Recent versions

- 0.1.1 (latest) — 2014-08-18
- 0.1.0 — 2014-08-16

## README

# gobble-esnext

Compile ES6 files with gobble and [esnext](https://github.com/esnext/esnext).

## Installation

First, you need to have gobble installed - see the [gobble readme](https://github.com/gobblejs/gobble) for details. Then,

```bash
npm i -D gobble-esnext
```

## Usage

**gobblefile.js**

```js
var gobble = require( 'gobble' );
module.exports = gobble( 'js' ).map( 'esnext' );
```

## Source code

```js
module.exports = esnext;

function esnext ( code, options ) {
  return require( 'esnext' ).compile( code );
}

esnext.defaults = {
  accept: '.js'
};
```


## License

MIT. Copyright 2014 Rich Harris

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