If you want to stay up to date, use the env preset
This preset includes the following plugins:
For more info, check out the setup page on the cli and the usage docs.
For more info, check out the setup page on the cli and the usage docs.
Install the CLI and this preset
npm install --save-dev babel-cli babel-preset-es2016
Make a .babelrc config file with the preset
echo '{ "presets": ["es2016"] }' > .babelrc
Create a file to run on
echo 'console.log(2 ** 3)' > index.js
Run it
./node_modules/.bin/babel-node index.js
npm install --save-dev babel-preset-es2016
.babelrc
(Recommended).babelrc
{
"presets": ["es2016"]
}
babel script.js --presets es2016
require("babel-core").transform("code", {
presets: ["es2016"]
});