├── .gitignore ├── 2_client_side ├── client │ ├── app │ │ ├── main.js │ │ └── utils │ │ │ └── index.js │ └── index.html ├── dist │ ├── app.bundle.js │ └── index.html ├── gulpfile.js ├── lib │ └── app.js └── package.json ├── 3_server_side ├── client │ ├── app │ │ ├── main.js │ │ └── utils │ │ │ └── index.js │ └── index.html ├── dist │ ├── app.bundle.js │ └── index.html ├── gulpfile.js ├── lib │ └── app.js ├── package.json ├── portable │ └── index.js └── server.js ├── 4_classes ├── client │ ├── app │ │ ├── Polygon.js │ │ ├── Square.js │ │ ├── main.js │ │ └── utils │ │ │ └── index.js │ └── index.html ├── dist │ ├── app.bundle.js │ └── index.html ├── gulpfile.js ├── lib │ └── app.js ├── package.json ├── portable │ └── index.js └── server.js ├── 5_generators ├── client │ ├── app │ │ ├── main.js │ │ └── utils │ │ │ └── index.js │ └── index.html ├── dist │ ├── app.bundle.js │ └── index.html ├── gulpfile.js ├── lib │ └── app.js ├── package.json ├── portable │ └── index.js └── server.js ├── 6_other_stuff ├── client │ ├── app │ │ ├── main.js │ │ └── utils │ │ │ └── index.js │ └── index.html ├── dist │ ├── app.bundle.js │ └── index.html ├── gulpfile.js ├── lib │ └── app.js ├── package.json ├── portable │ └── index.js └── server.js ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/.gitignore -------------------------------------------------------------------------------- /2_client_side/client/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/2_client_side/client/app/main.js -------------------------------------------------------------------------------- /2_client_side/client/app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/2_client_side/client/app/utils/index.js -------------------------------------------------------------------------------- /2_client_side/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/2_client_side/client/index.html -------------------------------------------------------------------------------- /2_client_side/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/2_client_side/dist/app.bundle.js -------------------------------------------------------------------------------- /2_client_side/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/2_client_side/dist/index.html -------------------------------------------------------------------------------- /2_client_side/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/2_client_side/gulpfile.js -------------------------------------------------------------------------------- /2_client_side/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/2_client_side/lib/app.js -------------------------------------------------------------------------------- /2_client_side/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/2_client_side/package.json -------------------------------------------------------------------------------- /3_server_side/client/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/client/app/main.js -------------------------------------------------------------------------------- /3_server_side/client/app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/client/app/utils/index.js -------------------------------------------------------------------------------- /3_server_side/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/client/index.html -------------------------------------------------------------------------------- /3_server_side/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/dist/app.bundle.js -------------------------------------------------------------------------------- /3_server_side/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/dist/index.html -------------------------------------------------------------------------------- /3_server_side/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/gulpfile.js -------------------------------------------------------------------------------- /3_server_side/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/lib/app.js -------------------------------------------------------------------------------- /3_server_side/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/package.json -------------------------------------------------------------------------------- /3_server_side/portable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/portable/index.js -------------------------------------------------------------------------------- /3_server_side/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/3_server_side/server.js -------------------------------------------------------------------------------- /4_classes/client/app/Polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/client/app/Polygon.js -------------------------------------------------------------------------------- /4_classes/client/app/Square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/client/app/Square.js -------------------------------------------------------------------------------- /4_classes/client/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/client/app/main.js -------------------------------------------------------------------------------- /4_classes/client/app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/client/app/utils/index.js -------------------------------------------------------------------------------- /4_classes/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/client/index.html -------------------------------------------------------------------------------- /4_classes/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/dist/app.bundle.js -------------------------------------------------------------------------------- /4_classes/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/dist/index.html -------------------------------------------------------------------------------- /4_classes/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/gulpfile.js -------------------------------------------------------------------------------- /4_classes/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/lib/app.js -------------------------------------------------------------------------------- /4_classes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/package.json -------------------------------------------------------------------------------- /4_classes/portable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/portable/index.js -------------------------------------------------------------------------------- /4_classes/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/4_classes/server.js -------------------------------------------------------------------------------- /5_generators/client/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/client/app/main.js -------------------------------------------------------------------------------- /5_generators/client/app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/client/app/utils/index.js -------------------------------------------------------------------------------- /5_generators/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/client/index.html -------------------------------------------------------------------------------- /5_generators/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/dist/app.bundle.js -------------------------------------------------------------------------------- /5_generators/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/dist/index.html -------------------------------------------------------------------------------- /5_generators/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/gulpfile.js -------------------------------------------------------------------------------- /5_generators/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/lib/app.js -------------------------------------------------------------------------------- /5_generators/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/package.json -------------------------------------------------------------------------------- /5_generators/portable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/portable/index.js -------------------------------------------------------------------------------- /5_generators/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/5_generators/server.js -------------------------------------------------------------------------------- /6_other_stuff/client/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/client/app/main.js -------------------------------------------------------------------------------- /6_other_stuff/client/app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/client/app/utils/index.js -------------------------------------------------------------------------------- /6_other_stuff/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/client/index.html -------------------------------------------------------------------------------- /6_other_stuff/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/dist/app.bundle.js -------------------------------------------------------------------------------- /6_other_stuff/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/dist/index.html -------------------------------------------------------------------------------- /6_other_stuff/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/gulpfile.js -------------------------------------------------------------------------------- /6_other_stuff/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/lib/app.js -------------------------------------------------------------------------------- /6_other_stuff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/package.json -------------------------------------------------------------------------------- /6_other_stuff/portable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/portable/index.js -------------------------------------------------------------------------------- /6_other_stuff/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/6_other_stuff/server.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/start-coding-es6-with-babel/HEAD/README.md --------------------------------------------------------------------------------