I\'ve been trying out Angular 2 since beta, and now with rc.0+ some things have changed.
One of those are RouteParams which cannot be imported from @angular/router.
One way is
routerOnActivate(curr: RouteSegment) { this.userName = curr.getParam('userName'); this.projId = curr.getParam('projId'); }