This is simple project to understand babel and systemjs . Babel used to transpile the es6 module to systemjs compatible file . Systemjs used to load the es6 transpiled module to browser .
babel src -d dest/
babel -w src -d dest/
{ "plugins": [ ["transform-es2015-modules-systemjs", { "systemGlobal": "SystemJS" }] ] }
npm run compile npm run babel_compile (watch mode) npm start (to start the lite server)