# 6to5ify

> 6to5 browserify plugin

Latest version **4.1.1** (published 2015-02-12) · 0 weekly downloads

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

## Install

```sh
npm install 6to5ify
pnpm add 6to5ify
yarn add 6to5ify
bun add 6to5ify
```

## Health

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

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 4.1.1 |
| Published | 2015-02-12 |
| First published | 2014-12-13 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 (+6 in 1 direct dependencies) |
| Install scripts | no |
| Author | Sebastian McKenzie |
| Maintainers | sebmck |

## Links

- npm: https://www.npmjs.com/package/6to5ify
- Repository: https://github.com/sebmck/6to5-browserify
- Issues: https://github.com/sebmck/6to5-browserify/issues
- npm.io page: https://npm.io/package/6to5ify

## Dependencies (3)

- [lodash](https://npm.io/package/lodash.md) ^3.0.0
- [through](https://npm.io/package/through.md) 2.3.4
- [6to5-core](https://npm.io/package/6to5-core.md) ^3.0.0

## Recent versions

- 4.1.1 (latest) — 2015-02-12
- 4.1.0 — 2015-02-03
- 4.0.0 — 2015-01-28
- 3.1.2 — 2015-01-08
- 3.1.1 — 2015-01-08
- 3.1.0 — 2015-01-01
- 3.0.0 — 2014-12-27
- 2.0.0 — 2014-12-14
- 1.4.0 — 2014-12-13

## README

# 6to5ify

[6to5](https://github.com/6to5/6to5) [browserify](https://github.com/substack/node-browserify) plugin

## Installation

    $ npm install --save-dev 6to5ify

## Usage

### CLI

    $ browserify script.js -t 6to5ify --outfile bundle.js

### Node

```javascript
var fs = require("fs");
var browserify = require("browserify");
var to5ify = require("6to5ify");
browserify({ debug: true })
  .transform(to5ify)
  .require("./script.js", { entry: true })
  .bundle()
  .on("error", function (err) { console.log("Error : " + err.message); })
  .pipe(fs.createWriteStream("bundle.js"));
```

#### [Options](https://6to5.github.io/usage.html#options)

```javascript
browserify().transform(to5ify.configure({
  blacklist: ["generators"]
}))
```

```sh
$ browserify -d -e script.js -t [ 6to5ify --blacklist generators ]
```

#### Enable Experimental Transforms

By default 6to5's [experimental transforms](http://6to5.org/docs/usage/transformers/#es7-experimental-)
are disabled. You can turn them on by passing `experimental` as a configuration option.

```javascript
browserify().transform(to5ify.configure({
  experimental: true
}))
```

```sh
$ browserify -d -e script.js -t [ 6to5ify --experimental ]
```

#### Customising extensions

By default all files with the extensions `.js`, `.es`, '`.es6` and `.jsx` are compiled.
You can change this by passing an array of extensions.

**NOTE:** This will override the default ones so if you want to use any of them
you have to add them back.

```javascript
browserify().transform(to5ify.configure({
  extensions: [".6to5"]
}))
```

```sh
$ browserify -d -e script.js -t [ 6to5ify --extensions .6to5 ]
```

#### Relative source maps

Browserify passes an absolute path so there's no way to determine what folder
it's relative to. You can pass a relative path that'll be removed from the
absolute path with the `sourceMapRelative` option.

```javascript
browserify().transform(to5ify.configure({
  sourceMapRelative: "/Users/sebastian/Projects/my-cool-website/assets"
}))
```

```sh
$ browserify -d -e script.js -t [ 6to5ify --sourceMapRelative . ]
```

#### Additional options

```javascript
browserify().transform(to5ify.configure({
  // Optional ignore regex - if any filenames **do** match this regex then they
  // aren't compiled
  ignore: /regex/,

  // Optional only regex - if any filenames **don't** match this regex then they
  // aren't compiled
  only: /my_es6_folder/
}))
```

```sh
$ browserify -d -e script.js -t [ 6to5ify --ignore regex --only my_es6_folder ]
```

#### ES6 Polyfill

As a convenience, the 6to5 polyfill is exposed in 6to5ify. If you've got
a browserify-only package this may alleviate the necessity to have
*both* 6to5 & 6to5ify installed.

```javascript
// In browser code
require("6to5ify/polyfill");
```

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