Babel preset that automatically targets the latest Node.js version by including only the necessary transforms. Version 5.1.1 is stable but unmaintained; the preset requires bluebird as a peer dependency. Unlike generic babel-preset-env, this preset is Node-specific and historically was used to avoid polyfills for unsupported Node features. No longer actively developed; prefer @babel/preset-env with node target.
npm install babel-preset-nodeVerified import paths — ran on the pinned version, not inferred.
Configures Babel to target the latest Node version, reducing unnecessary transforms.
Replace with @babel/preset-env: npm install --save-dev @babel/preset-env and configure { presets: [['@babel/preset-env', { targets: { node: 'current' } }]] }.Consider omitting bluebird or switching to @babel/preset-env which does not impose peer deps.
Update to use 'presets: ["babel-preset-node"]' string syntax.
Upgrade to version 5.x and use presets array: { presets: ['babel-preset-node'] }.Install bluebird: npm install --save bluebird.