Registry / devops / es6-browserify

es6-browserify

JSON →
library0.0.7jsnpmunverified

es6-browserify is a Browserify transform that runs es6-transpiler to transpile ES6 code into ES5. It is no longer maintained and relies on outdated tools such as es6-transpiler (also abandoned). Current stable version: 0.0.7. Release cadence: none. Key differentiators: it was an early attempt to integrate ES6 transpilation into Browserify before Babel became the standard. Not recommended for new projects.

npm install es6-browserify
INSTALL
IMPORT
SIG · ES6-BROWSERIFY
E
es6-browserify
devopsjavascriptv0.0.7
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

transform
var transform = require('es6-browserify');
CommonJS require in Node.js context. Not a named export.
default export
import transform from 'es6-browserify';
import { transform } from 'es6-browserify';
ESM usage with default import; named import not available.
no other exports
const es6Browserify = require('es6-browserify');
Only a single default export (the transform function). No other symbols exported.

Shows how to use es6-browserify as a transform with Browserify to transpile ES6 code.

const browserify = require('browserify'); const es6Browserify = require('es6-browserify'); const b = browserify('./src/app.js', { transform: [es6Browserify] }); b.bundle().pipe(process.stdout);
Debug
Known issues
gotchaes6-transpiler is no longer maintained and may not support many ES6 features. For production, use Babel instead.
fix
Migrate to babelify or other modern transpiler transforms.
affects: >=0.0.0
breakingThis package depends on es6-transpiler which has known security vulnerabilities (e.g., prototype pollution in certain dependencies).
fix
Avoid using this package. Consider alternatives like Babel with babelify.
affects: >=0.0.0
deprecatedThe package has not been updated since version 0.0.7 (released in 2015) and is effectively abandoned.
fix
Switch to actively maintained tools like @babel/preset-env with babelify.
affects: >=0.0.0
gotchaes6-browserify requires es6-transpiler as a dependency, which may fail to install on newer Node versions due to outdated native modules.
fix
Do not use this package; it is not compatible with modern Node.js environments.
affects: >=0.0.0
Errors
Common errors & fixes
Cannot find module 'es6-transpiler'
es6-transpiler is not installed correctly or missing from node_modules.
fix
Use a different transpiler like Babel; es6-transpiler is outdated.
Error: Transform 'es6-browserify' returned a function that is not a through stream
Incorrect usage or broken transform due to compatibility issues with newer Browserify versions.
fix
Avoid using this transform; migrate to babelify.
Upgrade
Version history
0.0.7latest on npm
Audit
Dependencies
es6-transpilerrequiredCore transpiler used to convert ES6 to ES5
Agent activity
4 hits · last 30 days
node
4
Resources
es6-browserify — npm install es6-browserify · libregistry