1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /* ES6 by default! Using http://babeljs.io Our actual application code begins inside of server/main.js, but the process should be started from this file in order to enable ES6 translation. There is no boilerplate ES6 code in our application so if you choose not to use any ES6 features, you can start your application from main.js. */ require('babel-register'); require('./main'); |