Starting an Angular 2 RC.1 Project | @CloudExpo #Cloud

The current version of Angular is Release Candidate 1. This version changed the way how the framework is distributed – it comes as a set of scoped npm packages now. Any imports of the Angular classes will be done from @angular instead of angular2, for example:
import {bootstrap} from ‘@angular/platform-browser-dynamic’;
import {Component} from ‘@angular/core’;

read more