But like the prayers been answered we have Angular-CLI. But it was bit of a bumpy ride for me to get it started on Fedora24 box. So here are the steps to get you going
1. You need to install g++ if you don't have it yet, run the following command to install it.
$ sudo dnf install gcc-c++2. Then update the npm to latest, i mean the very latest or next version by running the following command
$ npm -g install npm@next3. Clean the npm module cache by running the following command
$ npm clean cache4. Now you can install angular-cli by running
$ npm install -g angular-cliThats it, Now you can follow documentation on https://cli.angular.io/ and start developing your first angular2 application.