Vue.js and Related

WebPack and Parcel

Babel

const input = [1, 2, 3];
console.log(input.map(item => item + 1)); // [2, 3, 4]

is compiled by Babel to:

var input = [1, 2, 3];
console.log(input.map(function (item) {
  return item + 1;
})); // [2, 3, 4]

上面例子引自:Why Babel Matters

Babel 也支持 React 的 JSX 语法。