#format wiki
#language en
= Angular2 javascript framework by Google =
 * Links http://victorsavkin.com/post/118372404541/the-core-concepts-of-angular-2
 * 201604 Install Angular2 quickstart
   * Clone quickstart
     * $ git clone  https://github.com/angular/quickstart  my-proj
     * $ cd my-proj
   * Remove git
     * $ rm -rf .git
   * Create own git
     * $ git init
     * $ git add .
     * $ git commit -m "Initial commit"
     * $ git remote add origin <repo-address>
     * $ git push -u origin master
   * Install software and start web site.
     * $ npm install
     * $ npm start

...