Socket
Book a DemoInstallSign in
Socket

babel-preset-es2016-node5

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-preset-es2016-node5

Babel preset to make node@5 ES2015 compatible and some ES2016 features.

latest
Source
npmnpm
Version
1.1.2
Version published
Weekly downloads
448
16.36%
Maintainers
1
Weekly downloads
 
Created
Source

babel-preset-es2016-node5

This module only support one feature of ES2016: async, you can use preset: es2015-node5, stage3 to get the same effect.

Babel preset to make node@5 ES2016 compatible.

Node@5 has great ES2015 support, this module just adds missing features:

  • destructing assignment
  • rest & default parameters
  • modules
  • unicode and sticky regular expressions

And ES2016 support

  • async function

Install

$ npm install --save-dev babel-preset-es2016-node5

Usage

.babelrc

{
  "presets": ["es2016-node5"]
}

Via CLI

$ babel script.js --preset es2016-node5

Via Node API

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

License

MIT

Keywords

babel-preset-es2016

FAQs

Package last updated on 13 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts