Trying to learn the new things that ES6 brings, I am following steps to transpile my first file, but I can not get it; I do not see any error, nothing bad appears when trying to do the operation.
I am following the steps on the page, and follows the same way
npm install -g babel-cli
npm install --save-dev babel-cli
All it does is create a file identical to the one I want to transpile, but with the output name that I want to place.
babel --watch archivo_es6.js --out-file archivo_es5.js
Code
let saludo;
saludo = 'hola
mundo';
console.log(saludo);