Node.js nie umożliwia jeszcze wykorzystania wszystkich nowości specyfikacji ECMAScript. W tym celu stosuje się rozwiązania hybrydowe oparte o m.in. kompilator Babel. W artykule zaprezentowano połączenie aplikacji Node.js z kompilatorem Babel oraz przedstawiono wdrożenie takiej aplikacji na chmurę Heroku.
Although ECMAScript6 has not been officially released yet, we can play around with new language features today. There are tools such as Traceur or Babel which are able to convert ECMAScript6 into ECMASciprt5, thus we are able to run the code in every browser. So let's try to run the snippet below, which leverages destructuring assignment using those tools ...