v11.0.0 — Babel preset that transpiles only the ES2015 features missing in Node 6.x (V8 v5.x, ~93% coverage). Unlike the full ES2015 preset, this complements native V8 support, resulting in faster builds and execution. The preset includes only two plugins: trailing function commas and CommonJS modules. Last updated in 2017; no newer releases for current Node versions.
npm install babel-preset-node6Verified import paths — ran on the pinned version, not inferred.
Minimal .babelrc configuration to transpile only ES2015 features missing in Node 6.x.
Use a modern Babel preset like @babel/preset-env with target 'node 10' or higher.
Add babel-polyfill or @babel/polyfill for complete ES2015 support.
Use @babel/preset-env with Babel 7 instead.
Run npm install babel-preset-node6 and use short name "node6" in presets array.
Ensure .babelrc includes "presets": ["node6"] and that babel-register or babel-cli is used.