How to Setup Babel es2015 Javascript on Windows 8.1?
First create a folder: Then CD into that folder through CMD Then do the follow in command-line npm init npm install -g babel-cli npm install babel-preset-es2015–save-dev Then create app.js.es6 file Then use this example code: class Person { constructor(name) { this.name = name; } greet(){ return “Hello I am ${this.name}”; } } let person =…