Инструкция по установке babel (JavaScript-компилятора).
Запуск компиляции
Когда уже всё установлено.
Перейти в папку:
Команды запусков:
Установка Node
Прежде нужно установить Node.js. Здесь ниже будет краткая установка, подробнее можно почитать здесь.
Перейти в папку в которой будем инициализировать:
Устанавливаем по-умолчанию:
После установки появится новый файл package.json. Здесь находится вся информация по работе с npm.
Устанавливаем babel
There are different ways to install and run Babel. For example, you could also install Babel globally and run it from the command line. Refer to the Babel documentation for more information.
Type the following command to install the ECMAScript 2015 preset:
In Babel 6, every transformer is a plugin that can be installed separately. A preset is a group of related plugins. Using a preset, you don’t have to install and update dozens of plugins individually.
По окончанию установки появится папка node_modules. Здесь находятся установленные файлы и модули. Также они прописались в файл package.json, в разделе devDependencies.