babel-preset-es2017-node7

0.5.2 • Public • Published

babel-preset-es2017-node7

Babel preset to make node@7 ES2017 compatible.

Node@7 has great ES2017 support, the most excited change is the support of async function in harmony flag, this module just adds missing features:

Install

$ npm install --save-dev babel-preset-es2017-node7

Usage

Read "Configuring Babel 6" article for more information about babel@6 configuration.

Node run in harmony

# 7.6.0 > Node.js version > 7.0.0 
node --harmony script.js
# Node.js version >= 7.6.0 
node script.js

Via .babelrc (recommended)

.babelrc

{
  "presets": ["es2017-node7"]
}

If you are using webpack 2, this will help for import / export was natively supported in Webpack 2.

{
  "presets": ["es2017-node7/webpack2"]
}

Via CLI

babel script.js --presets es2017-node7

Via Node API

require('babel-core').transform('code', {
  presets: ['es2017-node7'],
})

Credits

License

MIT

Package Sidebar

Install

npm i babel-preset-es2017-node7

Weekly Downloads

275

Version

0.5.2

License

MIT

Last publish

Collaborators

  • tengattack